summaryrefslogtreecommitdiff
path: root/protocols/GTalkExt/src/handlers.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-03-25 08:26:09 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-03-25 08:26:09 +0000
commita881be4206c532a8d7dd1d65fbeed1e1a89e84d2 (patch)
treee6535bc89ae655e482f5b1037a6791391e1bf909 /protocols/GTalkExt/src/handlers.cpp
parent94307fb2630cb2e7f94bb281075dec2cff6680c9 (diff)
last portion of cleaning before removing GtalkExt's contact
git-svn-id: http://svn.miranda-ng.org/main/trunk@4184 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/GTalkExt/src/handlers.cpp')
-rw-r--r--protocols/GTalkExt/src/handlers.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/protocols/GTalkExt/src/handlers.cpp b/protocols/GTalkExt/src/handlers.cpp
index e72a940d3e..422f627973 100644
--- a/protocols/GTalkExt/src/handlers.cpp
+++ b/protocols/GTalkExt/src/handlers.cpp
@@ -407,7 +407,8 @@ int AccListChanged(WPARAM wParam, LPARAM lParam)
{
if (PRAC_ADDED == wParam) {
IJabberInterface *japi = getJabberApi(((PROTOACCOUNT*)lParam)->szModuleName);
- if (japi) japi->Net()->AddSendHandler(SendHandler);
+ if (japi)
+ japi->Net()->AddSendHandler(SendHandler);
}
return 0;
}
@@ -421,10 +422,10 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam)
ProtoEnumAccounts(&count, &protos);
for (int i = 0; i < count; i++) {
IJabberInterface *japi = getJabberApi(protos[i]->szModuleName);
- if (japi) japi->Net()->AddSendHandler(SendHandler);
+ if (japi)
+ japi->Net()->AddSendHandler(SendHandler);
}
HookOptionsInitialization();
-
return 0;
} \ No newline at end of file