diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2010-08-23 22:53:44 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2010-08-23 22:53:44 +0300 |
commit | 12070f1ab059a9c1595616cde2397a09023eec9f (patch) | |
tree | 79e38ca3068a5773da4d32a79d4ba1e2949df48b /srmm.cpp | |
parent | b8ab705f6fe2df0ce3aebe5749521f768d4df5e8 (diff) |
modified: clist.cpp
modified: commonheaders.h
modified: icons.cpp
modified: init.cpp
modified: main.cpp
modified: srmm.cpp
modified: utilities.cpp
Diffstat (limited to 'srmm.cpp')
-rw-r--r-- | srmm.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -21,12 +21,14 @@ void ShowStatusIcon(HANDLE hContact);
BOOL isProtoMetaContacts(HANDLE hContact);
HANDLE getMostOnline(HANDLE hContact);
+void setSrmmIcon(HANDLE hContact);
int __cdecl onWindowEvent(WPARAM wParam, LPARAM lParam) {
MessageWindowEventData *mwd = (MessageWindowEventData *)lParam;
- if(mwd->uType == MSG_WINDOW_EVT_OPEN || mwd->uType == MSG_WINDOW_EVT_OPENING) {
- ShowStatusIcon(mwd->hContact);
+ if(mwd->uType == MSG_WINDOW_EVT_OPEN || mwd->uType == MSG_WINDOW_EVT_OPENING)
+ {
+ setSrmmIcon(mwd->hContact);
}
return 0;
}
|