mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-23 13:54:54 +02:00
Fix sizeof bug with font size list.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository@315 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
parent
adba68de00
commit
f8d3d3e5de
@ -54,7 +54,7 @@ void SharedParametersDialog::initControls()
|
|||||||
_pBgColour[i]->display();
|
_pBgColour[i]->display();
|
||||||
|
|
||||||
//for the font size combos
|
//for the font size combos
|
||||||
for(int j = 0 ; j < int(sizeof(fontSizeStrs))/3 ; j++)
|
for(int j = 0 ; j < int(sizeof(fontSizeStrs))/(3*sizeof(TCHAR)) ; j++)
|
||||||
{
|
{
|
||||||
::SendDlgItemMessage(_hSelf, _fontSizeCombo[i], CB_ADDSTRING, 0, (LPARAM)fontSizeStrs[j]);
|
::SendDlgItemMessage(_hSelf, _fontSizeCombo[i], CB_ADDSTRING, 0, (LPARAM)fontSizeStrs[j]);
|
||||||
}
|
}
|
||||||
|
@ -96,7 +96,7 @@ BOOL CALLBACK WordStyleDlg::run_dlgProc(UINT Message, WPARAM wParam, LPARAM lPar
|
|||||||
colourHooker.setColour(RGB(0xFF, 0x00, 0x00));
|
colourHooker.setColour(RGB(0xFF, 0x00, 0x00));
|
||||||
colourHooker.hookOn(_hStyleInfoStaticText);
|
colourHooker.hookOn(_hStyleInfoStaticText);
|
||||||
|
|
||||||
for(int i = 0 ; i < sizeof(fontSizeStrs)/3 ; i++)
|
for(int i = 0 ; i < sizeof(fontSizeStrs)/(3*sizeof(TCHAR)) ; i++)
|
||||||
::SendMessage(_hFontSizeCombo, CB_ADDSTRING, 0, (LPARAM)fontSizeStrs[i]);
|
::SendMessage(_hFontSizeCombo, CB_ADDSTRING, 0, (LPARAM)fontSizeStrs[i]);
|
||||||
|
|
||||||
const std::vector<std::generic_string> & fontlist = (NppParameters::getInstance())->getFontList();
|
const std::vector<std::generic_string> & fontlist = (NppParameters::getInstance())->getFontList();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user