Fix typos

This commit is contained in:
Don HO 2020-04-14 22:28:16 +02:00
parent 4dbe7b78ff
commit 8a37faa704
4 changed files with 4 additions and 4 deletions

View File

@ -1268,7 +1268,7 @@ Find in all files except exe, obj && log:
<summary-nbsel2 value=" bytes) in "/> <summary-nbsel2 value=" bytes) in "/>
<summary-nbrange value=" ranges"/> <summary-nbrange value=" ranges"/>
<multi-edge-radio-tip value="Add your column marker by indicating its position with a decimal number. <multi-edge-radio-tip value="Add your column marker by indicating its position with a decimal number.
You can define several column markers by using white space to seperate the different numbers."/> You can define several column markers by using white space to separate the different numbers."/>
</MiscStrings> </MiscStrings>
</Native-Langue> </Native-Langue>
</NotepadPlus> </NotepadPlus>

View File

@ -25,7 +25,7 @@ distribution.
#include "tinyxmlA.h" #include "tinyxmlA.h"
// The goal of the seperate error file is to make the first // The goal of the separate error file is to make the first
// step towards localization. tinyxml (currently) only supports // step towards localization. tinyxml (currently) only supports
// latin-1, but at least the error messages could now be translated. // latin-1, but at least the error messages could now be translated.
// //

View File

@ -25,7 +25,7 @@ distribution.
#include "tinyxml.h" #include "tinyxml.h"
// The goal of the seperate error file is to make the first // The goal of the separate error file is to make the first
// step towards localization. tinyxml (currently) only supports // step towards localization. tinyxml (currently) only supports
// latin-1, but at least the error messages could now be translated. // latin-1, but at least the error messages could now be translated.
// //

View File

@ -664,7 +664,7 @@ void MarginsDlg::initScintParam()
::EnableWindow(::GetDlgItem(_hSelf, IDC_COLUMNPOS_EDIT), isEnable && isCheckedOrNot(IDC_RADIO_MULTILNMODE)); ::EnableWindow(::GetDlgItem(_hSelf, IDC_COLUMNPOS_EDIT), isEnable && isCheckedOrNot(IDC_RADIO_MULTILNMODE));
NativeLangSpeaker *pNativeSpeaker = (NppParameters::getInstance()).getNativeLangSpeaker(); NativeLangSpeaker *pNativeSpeaker = (NppParameters::getInstance()).getNativeLangSpeaker();
generic_string radioboxTip = pNativeSpeaker->getLocalizedStrFromID("multi-edge-radio-tip", TEXT("Add your column marker by indicating its position with a decimal number.\nYou can define several column markers by using white space to seperate the different numbers.")); generic_string radioboxTip = pNativeSpeaker->getLocalizedStrFromID("multi-edge-radio-tip", TEXT("Add your column marker by indicating its position with a decimal number.\nYou can define several column markers by using white space to separate the different numbers."));
_multiEdgeTip = CreateToolTip(IDC_RADIO_MULTILNMODE, _hSelf, _hInst, const_cast<PTSTR>(radioboxTip.c_str())); _multiEdgeTip = CreateToolTip(IDC_RADIO_MULTILNMODE, _hSelf, _hInst, const_cast<PTSTR>(radioboxTip.c_str()));
oldFunclstToolbarProc = reinterpret_cast<WNDPROC>(::SetWindowLongPtr(::GetDlgItem(_hSelf, IDC_COLUMNPOS_EDIT), GWLP_WNDPROC, reinterpret_cast<LONG_PTR>(editNumSpaceProc))); oldFunclstToolbarProc = reinterpret_cast<WNDPROC>(::SetWindowLongPtr(::GetDlgItem(_hSelf, IDC_COLUMNPOS_EDIT), GWLP_WNDPROC, reinterpret_cast<LONG_PTR>(editNumSpaceProc)));