diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-06-17 19:58:52 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-06-17 19:58:52 +0000 |
commit | a65f102f03302161ac127268d5ffdb8f7678e339 (patch) | |
tree | 480790ed2acdd03e1934665b605a87a362950eb5 /plugins/AuthState/src/main.cpp | |
parent | 3287729a2be09add3ae7f1be4c12a9578f56a0e1 (diff) |
AuthState: Fixed refreshing Facebook state icons.
git-svn-id: http://svn.miranda-ng.org/main/trunk@5000 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AuthState/src/main.cpp')
-rw-r--r-- | plugins/AuthState/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/AuthState/src/main.cpp b/plugins/AuthState/src/main.cpp index 76e12e5a67..e7dd62fd74 100644 --- a/plugins/AuthState/src/main.cpp +++ b/plugins/AuthState/src/main.cpp @@ -114,7 +114,7 @@ int onContactSettingChanged(WPARAM wParam,LPARAM lParam) if (!proto) return 0;
if (!lstrcmpA(cws->szModule,proto))
- if (!lstrcmpA(cws->szSetting,"Auth") || !lstrcmpA(cws->szSetting,"Grant") || !lstrcmpA(cws->szSetting,"ServerId"))
+ if (!lstrcmpA(cws->szSetting,"Auth") || !lstrcmpA(cws->szSetting,"Grant") || !lstrcmpA(cws->szSetting,"ServerId") || !lstrcmpA(cws->szSetting,"ContactType"))
onExtraImageApplying(wParam, 1);
return 0;
|