diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-15 11:58:39 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-15 11:58:39 +0000 |
commit | e11ecaaf2df6c1e50429f5a43f2346795cfce721 (patch) | |
tree | c49341a282d1526a6c4727b97504e08973c42233 /src/modules/chat/chat_svc.cpp | |
parent | f507f067b0559d3e9e3d9764fd9ae94284432577 (diff) |
local StdChat structure moved back to StdChat
git-svn-id: http://svn.miranda-ng.org/main/trunk@7663 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/chat/chat_svc.cpp')
-rw-r--r-- | src/modules/chat/chat_svc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/chat/chat_svc.cpp b/src/modules/chat/chat_svc.cpp index 87b01ee537..44d6be8c1b 100644 --- a/src/modules/chat/chat_svc.cpp +++ b/src/modules/chat/chat_svc.cpp @@ -233,7 +233,7 @@ static INT_PTR Service_NewChat(WPARAM wParam, LPARAM lParam) db_set_s(si->hContact, si->pszModule, "StatusBar", "");
}
else {
- SESSION_INFO* si2 = ci.SM_FindSession(gcw->ptszID, gcw->pszModule);
+ SESSION_INFO *si2 = ci.SM_FindSession(gcw->ptszID, gcw->pszModule);
if (si2) {
ci.UM_RemoveAll(&si2->pUsers);
ci.TM_RemoveAll(&si2->pStatuses);
|