diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-13 15:19:47 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-13 15:19:47 +0000 |
commit | 7f35b5c32df443cf13dbb476c641e01f30db1d6c (patch) | |
tree | 6d8f90bb3e7e3dd41f0fde9e2ac8557a260cb8b4 /plugins/DbEditorPP/src/icons.cpp | |
parent | ca03ebb556b09af11c936f1be681323d419efceb (diff) |
encrypted settings are not displayed in dbeditor
git-svn-id: http://svn.miranda-ng.org/main/trunk@7631 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/DbEditorPP/src/icons.cpp')
-rw-r--r-- | plugins/DbEditorPP/src/icons.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/DbEditorPP/src/icons.cpp b/plugins/DbEditorPP/src/icons.cpp index 7aab4906e7..83d873b5e9 100644 --- a/plugins/DbEditorPP/src/icons.cpp +++ b/plugins/DbEditorPP/src/icons.cpp @@ -47,7 +47,7 @@ void AddProtoIconsToList(HIMAGELIST hil, int newshift) for (int i = 0; i < protoCount; i++) {
HICON hIcon;
- if (hIcon=LoadSkinnedProtoIcon(protocols[i]->szModuleName, ID_STATUS_ONLINE))
+ if (hIcon = LoadSkinnedProtoIcon(protocols[i]->szModuleName, ID_STATUS_ONLINE))
AddIconToList(hil, hIcon);
else
AddIconToList(himl, LoadSkinnedDBEIcon(ICO_ONLINE));
@@ -56,7 +56,7 @@ void AddProtoIconsToList(HIMAGELIST hil, int newshift) int GetProtoIcon(char *szProto)
{
- if ( !protoCount || !protocols || !szProto)
+ if (!protoCount || !protocols || !szProto)
return DEF_ICON;
int n = 0;
|