diff options
author | George Hazan <george.hazan@gmail.com> | 2015-08-22 20:21:10 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-08-22 20:21:10 +0000 |
commit | c7ffc608a5346c75e372d7b1a0de3983fdb41cd5 (patch) | |
tree | 65f8db10f96785ac7dbbde8a566d9df5480dc91a /plugins | |
parent | 15dfb1f918233b5f083a02fc01c264889ee90351 (diff) |
typo fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@15015 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/FloatingContacts/src/thumbs.cpp | 2 | ||||
-rw-r--r-- | plugins/FloatingContacts/src/version.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/FloatingContacts/src/thumbs.cpp b/plugins/FloatingContacts/src/thumbs.cpp index 1553d293fb..eb3659e425 100644 --- a/plugins/FloatingContacts/src/thumbs.cpp +++ b/plugins/FloatingContacts/src/thumbs.cpp @@ -301,7 +301,7 @@ void ThumbInfo::ResizeThumb() void ThumbInfo::RefreshContactIcon(int _iIcon)
{
- if (iIcon == 0xFFFFFFFF || ImageList_GetImageCount(himlMiranda) <= _iIcon)
+ if (_iIcon == 0xFFFFFFFF || ImageList_GetImageCount(himlMiranda) <= _iIcon)
iIcon = CallService(MS_CLIST_GETCONTACTICON, hContact, 0);
else
iIcon = _iIcon;
diff --git a/plugins/FloatingContacts/src/version.h b/plugins/FloatingContacts/src/version.h index 0ca55e9670..86c92c0869 100644 --- a/plugins/FloatingContacts/src/version.h +++ b/plugins/FloatingContacts/src/version.h @@ -1,7 +1,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 7
#define __RELEASE_NUM 0
-#define __BUILD_NUM 2
+#define __BUILD_NUM 3
#include <stdver.h>
|