summaryrefslogtreecommitdiff
path: root/src/core/stdmsg/src/statusicon.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-03-31 14:37:06 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-03-31 14:37:06 +0000
commit9832b02f72a26c28e65ef4f281c16e684618d2b8 (patch)
tree4ae62ed5f29d64c8a5d17c440785692df9d48dcd /src/core/stdmsg/src/statusicon.cpp
parent9e195db36b720ba2d796a883769b5ac34e1ad59b (diff)
- fixes #638 (Message window position no longer remembered correctly in StdMsg)
- code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@8806 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/stdmsg/src/statusicon.cpp')
-rw-r--r--src/core/stdmsg/src/statusicon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdmsg/src/statusicon.cpp b/src/core/stdmsg/src/statusicon.cpp
index 6e5e530bc7..24b09d1a6d 100644
--- a/src/core/stdmsg/src/statusicon.cpp
+++ b/src/core/stdmsg/src/statusicon.cpp
@@ -90,7 +90,7 @@ int DeinitStatusIcons()
int GetStatusIconsCount(MCONTACT hContact)
{
int nIcon = 0;
- while ( Srmm_GetNthIcon(hContact, nIcon) != NULL)
+ while (Srmm_GetNthIcon(hContact, nIcon) != NULL)
nIcon++;
return nIcon;
}