diff options
author | George Hazan <george.hazan@gmail.com> | 2012-11-10 21:36:54 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-11-10 21:36:54 +0000 |
commit | 9c2e0c8b025c98cbff2975e6dd9c86e03cd04244 (patch) | |
tree | bd95b8ef2753ef3f2b3701bfe350eb7682794319 /src/core/stdurl | |
parent | f22d8982b41614d703b0db98264e01ef7049a4a0 (diff) |
code cleaning for ME_DB_CONTACT_SETTINGCHANGED in plugins
git-svn-id: http://svn.miranda-ng.org/main/trunk@2283 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/stdurl')
-rw-r--r-- | src/core/stdurl/url.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/stdurl/url.cpp b/src/core/stdurl/url.cpp index 0245468725..f1751d74c1 100644 --- a/src/core/stdurl/url.cpp +++ b/src/core/stdurl/url.cpp @@ -105,10 +105,10 @@ static void RestoreUnreadUrlAlerts(void) static int ContactSettingChanged(WPARAM wParam, LPARAM lParam)
{
DBCONTACTWRITESETTING *cws = (DBCONTACTWRITESETTING*)lParam;
- char *szProto;
+ char *szProto = (char*)CallService(MS_PROTO_GETCONTACTBASEPROTO, wParam, 0);
+ if (lstrcmpA(cws->szModule, "CList") && (szProto == NULL || lstrcmpA(cws->szModule, szProto)))
+ return 0;
- szProto = (char*)CallService(MS_PROTO_GETCONTACTBASEPROTO, wParam, 0);
- if (lstrcmpA(cws->szModule, "CList") && (szProto == NULL || lstrcmpA(cws->szModule, szProto))) return 0;
WindowList_Broadcast(hUrlWindowList, DM_UPDATETITLE, 0, 0);
return 0;
}
|