mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-04-08 17:15:37 +02:00
Fix compiling warning/error
This commit is contained in:
parent
87b4276b3e
commit
27f0de3f5b
@ -85,12 +85,12 @@ void ToolBar::initHideButtonsConf(TiXmlDocument* toolButtonsDocRoot, ToolBarButt
|
||||
const wchar_t* isHideAll = stdBtnElement->Attribute(L"hideAll");
|
||||
if (isHideAll && (lstrcmp(isHideAll, L"yes") == 0))
|
||||
{
|
||||
for (size_t i = 0; i < arraySize; ++i)
|
||||
for (int i = 0; i < arraySize; ++i)
|
||||
_toolbarStdButtonsConfArray[i] = false;
|
||||
return;
|
||||
}
|
||||
|
||||
for (size_t i = 0; i < arraySize; ++i)
|
||||
for (int i = 0; i < arraySize; ++i)
|
||||
_toolbarStdButtonsConfArray[i] = true;
|
||||
|
||||
for (TiXmlNode* childNode = standardToolButtons->FirstChildElement(L"Button");
|
||||
|
Loading…
x
Reference in New Issue
Block a user