summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2017-10-09 19:03:49 +0300
committerGeorge Hazan <ghazan@miranda.im>2017-10-09 19:03:49 +0300
commite9fd088531d1520799f8ac48086cc9ae6656395e (patch)
tree42b6ad8307510578a4211b5a93f6e8f4d0c89709 /src
parenteec98453479bf86999060565ad90a63ff8f74942 (diff)
compilation fix
Diffstat (limited to 'src')
-rw-r--r--src/mir_app/src/clui.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mir_app/src/clui.cpp b/src/mir_app/src/clui.cpp
index 32dc667cbd..1d1ffbc0b1 100644
--- a/src/mir_app/src/clui.cpp
+++ b/src/mir_app/src/clui.cpp
@@ -472,7 +472,8 @@ LRESULT CALLBACK fnContactListWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM
#ifndef _DEBUG
{
int nStatus = db_get_w(0, "CList", "Status", ID_STATUS_OFFLINE);
- if (nStatus != ID_STATUS_OFFLINE) CallService(MS_CLIST_SETSTATUSMODE, nStatus, 0);
+ if (nStatus != ID_STATUS_OFFLINE)
+ Clist_SetStatusMode(nStatus);
}
#endif
break;