diff options
author | George Hazan <ghazan@miranda.im> | 2017-10-09 18:56:03 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-10-09 18:56:03 +0300 |
commit | eec98453479bf86999060565ad90a63ff8f74942 (patch) | |
tree | c2dcb22ac74920b3cbcc96d2376dfcd77e9dcffc /plugins/StatusManager/src/commonstatus.cpp | |
parent | 09c39492686b504391db1bda59d3a3c246435534 (diff) |
MS_CLIST_SETSTATUSMODE => Clist_SetStatusMode()
dunno how I could miss it
Diffstat (limited to 'plugins/StatusManager/src/commonstatus.cpp')
-rw-r--r-- | plugins/StatusManager/src/commonstatus.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/plugins/StatusManager/src/commonstatus.cpp b/plugins/StatusManager/src/commonstatus.cpp index c016f4d3ba..bea099864e 100644 --- a/plugins/StatusManager/src/commonstatus.cpp +++ b/plugins/StatusManager/src/commonstatus.cpp @@ -246,12 +246,8 @@ INT_PTR SetStatusEx(WPARAM wParam, LPARAM) } if (globStatus != 0) { - if (!ServiceExists(MS_CLIST_SETSTATUSMODE)) { - log_debugA("CommonStatus: MS_CLIST_SETSTATUSMODE not available!"); - return -1; - } log_debugA("CommonStatus: setting global status %u", globStatus); - CallService(MS_CLIST_SETSTATUSMODE, globStatus, 0); + Clist_SetStatusMode(globStatus); } return 0; |