diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-11-14 20:51:35 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-11-14 20:51:35 +0000 |
commit | 602b5649c01971b1289b63690bd66743f3f9387c (patch) | |
tree | fd3fbb62cb291024e60ca67ce59b01caf5da8aab /plugins/NewsAggregator/Src/Icons.cpp | |
parent | 81483e839d08683e35b74f42b2c4081c8101547c (diff) |
minor fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@10990 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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);
|