diff options
author | George Hazan <george.hazan@gmail.com> | 2013-03-31 19:09:56 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-03-31 19:09:56 +0000 |
commit | 33ed395de0eb385315d949c77b4e1289a6684112 (patch) | |
tree | 6698849d0a9396582130b7b2758565566b72f694 /plugins/SecureIM/src/loadicons.cpp | |
parent | cecb2a6e6e221b6cb94e48ef601d12bfde7f60f4 (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@4267 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM/src/loadicons.cpp')
-rw-r--r-- | plugins/SecureIM/src/loadicons.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SecureIM/src/loadicons.cpp b/plugins/SecureIM/src/loadicons.cpp index cf86cb77dc..473bc7108a 100644 --- a/plugins/SecureIM/src/loadicons.cpp +++ b/plugins/SecureIM/src/loadicons.cpp @@ -46,7 +46,7 @@ HINSTANCE LoadIconsPack(const char* szIconsPack) {
HINSTANCE hNewIconInst = LoadLibrary(szIconsPack);
if (hNewIconInst != NULL) {
- for(int i = ID_FIRSTICON; i <= ID_LASTICON; i++)
+ for (int i = ID_FIRSTICON; i <= ID_LASTICON; i++)
if (LoadIcon(hNewIconInst, MAKEINTRESOURCE(i)) == NULL) {
FreeLibrary(hNewIconInst);
hNewIconInst = NULL;
|