diff options
author | George Hazan <george.hazan@gmail.com> | 2013-07-23 20:43:50 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-07-23 20:43:50 +0000 |
commit | fd833d6ff60603f6caf772864f39ebf0a64b5b8b (patch) | |
tree | 865133996052f321f7b594f6377390d955bdfef2 /plugins/TabSRMM/src/container.cpp | |
parent | 90e458dac28dc98d60ab00b35ddcfd09fb46811a (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@5462 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/container.cpp')
-rw-r--r-- | plugins/TabSRMM/src/container.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TabSRMM/src/container.cpp b/plugins/TabSRMM/src/container.cpp index 366f68534f..a5709b5b1c 100644 --- a/plugins/TabSRMM/src/container.cpp +++ b/plugins/TabSRMM/src/container.cpp @@ -1019,8 +1019,8 @@ panel_found: if (dat && dat->bType == SESSIONTYPE_CHAT) {
SESSION_INFO *si = (SESSION_INFO *)dat->si;
if (si && dat->hContact) {
- char* szProto = GetContactProto(dat->hContact);
- if ( szProto )
+ char *szProto = GetContactProto(dat->hContact);
+ if (szProto)
CallProtoService( szProto, PS_LEAVECHAT, (WPARAM)dat->hContact, 0 );
}
}
|