From e082885769df09cdf36c2f6b427ae1e759aac123 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Mon, 22 Jul 2013 23:24:25 +0000 Subject: SimpleAR: Use ID_STATUS_* constants instead numbers git-svn-id: http://svn.miranda-ng.org/main/trunk@5451 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/SimpleAR/src/Main.cpp | 8 ++++---- plugins/SimpleAR/src/Options.cpp | 18 +++++++++--------- 2 files changed, 13 insertions(+), 13 deletions(-) (limited to 'plugins/SimpleAR/src') diff --git a/plugins/SimpleAR/src/Main.cpp b/plugins/SimpleAR/src/Main.cpp index fa52e56501..1c995f5262 100644 --- a/plugins/SimpleAR/src/Main.cpp +++ b/plugins/SimpleAR/src/Main.cpp @@ -115,16 +115,16 @@ INT CheckDefaults(WPARAM, LPARAM) for (int c=ID_STATUS_ONLINE; c 40078) + else if(c > ID_STATUS_INVISIBLE) ptszDefault=ptszDefaultMsg[c-ID_STATUS_ONLINE-3]; if (ptszDefault) db_set_ts(NULL,protocolname,szStatus,ptszDefault); @@ -192,7 +192,7 @@ INT addEvent(WPARAM wParam, LPARAM lParam) char* pszProto = GetContactProto(hContact); int status = CallProtoService(pszProto, PS_GETSTATUS, 0, 0); - if (status == 40072 || status == 40077 || status == 40078) + if (status == ID_STATUS_ONLINE || status == ID_STATUS_FREECHAT || status == ID_STATUS_INVISIBLE) return FALSE; DBEVENTINFO dbei = {sizeof(dbei)}; diff --git a/plugins/SimpleAR/src/Options.cpp b/plugins/SimpleAR/src/Options.cpp index aa4c3101ec..adb40e4972 100644 --- a/plugins/SimpleAR/src/Options.cpp +++ b/plugins/SimpleAR/src/Options.cpp @@ -27,7 +27,7 @@ INT_PTR CALLBACK DlgProcOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPara { mir_snprintf(tszStatus, SIZEOF(tszStatus), "%d", c); pszStatus=(TCHAR*)CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION,(WPARAM)c,GSMDF_TCHAR); - if (c == 40072 || c == 40077 || c == 40078) + if (c == ID_STATUS_ONLINE || c == ID_STATUS_FREECHAT || c == ID_STATUS_INVISIBLE) continue; else { @@ -35,9 +35,9 @@ INT_PTR CALLBACK DlgProcOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPara if (!db_get_ts(NULL, protocolname, tszStatus, &dbv)) { - if (c < 40077) + if (c < ID_STATUS_FREECHAT) ptszMessage[c-ID_STATUS_ONLINE-1] = _tcsdup(dbv.ptszVal); - else if (c > 40078) + else if (c > ID_STATUS_INVISIBLE) ptszMessage[c-ID_STATUS_ONLINE-3] = _tcsdup(dbv.ptszVal); db_free(&dbv); } @@ -111,16 +111,16 @@ INT_PTR CALLBACK DlgProcOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPara for (int c=ID_STATUS_ONLINE; c40078 && ptszMessage[c-ID_STATUS_ONLINE-3]) + else if (c>ID_STATUS_INVISIBLE && ptszMessage[c-ID_STATUS_ONLINE-3]) db_set_ts(NULL,protocolname,szStatus,ptszMessage[c-ID_STATUS_ONLINE-3]); else db_unset(NULL,protocolname,szStatus); @@ -133,13 +133,13 @@ INT_PTR CALLBACK DlgProcOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPara case WM_DESTROY: for (int c=ID_STATUS_ONLINE; c40078) + else if (c>ID_STATUS_INVISIBLE) ptszMessage[c-ID_STATUS_ONLINE-3]=NULL; } } -- cgit v1.2.3