diff options
Diffstat (limited to 'plugins/NewsAggregator/Src/Icons.cpp')
-rw-r--r-- | plugins/NewsAggregator/Src/Icons.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/NewsAggregator/Src/Icons.cpp b/plugins/NewsAggregator/Src/Icons.cpp index 3fda249194..011fe57c58 100644 --- a/plugins/NewsAggregator/Src/Icons.cpp +++ b/plugins/NewsAggregator/Src/Icons.cpp @@ -31,12 +31,12 @@ static IconItem iconList[] = { LPGEN("Auto Update Disabled"), "disabled", IDI_DISABLED}
};
-VOID InitIcons()
+void InitIcons()
{
Icon_Register(hInst, LPGEN("News Aggregator"), iconList, SIZEOF(iconList), MODULE);
}
-HICON LoadIconEx(const char *name, BOOL big)
+HICON LoadIconEx(const char *name, bool big)
{
char szSettingName[100];
mir_snprintf(szSettingName, SIZEOF(szSettingName), "%s_%s", MODULE, name);
|