diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-06-18 19:27:02 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-06-18 19:27:02 +0000 |
commit | d0b206fedb1c121ad6c0379aed02fbd77f81e77e (patch) | |
tree | bc7f9fbbc2afdba68b41a8ef3f7d43abdfe18c97 /plugins/TabSRMM/src | |
parent | c670d5d8c6737ac8fc6be9cd9c73f232713195a4 (diff) |
removed not used variable
git-svn-id: http://svn.miranda-ng.org/main/trunk@5026 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src')
-rw-r--r-- | plugins/TabSRMM/src/chat/window.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/TabSRMM/src/chat/window.cpp b/plugins/TabSRMM/src/chat/window.cpp index 95e0359ef7..8700c05e3e 100644 --- a/plugins/TabSRMM/src/chat/window.cpp +++ b/plugins/TabSRMM/src/chat/window.cpp @@ -1820,7 +1820,6 @@ static LRESULT CALLBACK NicklistSubclassProc(HWND hwnd, UINT msg, WPARAM wParam, CLCINFOTIP ti = {0};
USERINFO *ui1 = NULL;
TCHAR ptszBuf[1024];
- char serviceName[256];
POINT pt;
struct TWindowData *dat = (struct TWindowData *)GetWindowLongPtr(hwndParent, GWLP_USERDATA);
@@ -1845,7 +1844,7 @@ static LRESULT CALLBACK NicklistSubclassProc(HWND hwnd, UINT msg, WPARAM wParam, if (ProtoServiceExists(parentdat->pszModule, MS_GC_PROTO_GETTOOLTIPTEXT))
_tcsncpy(ptszBuf, (TCHAR*)CallProtoService(parentdat->pszModule, MS_GC_PROTO_GETTOOLTIPTEXT, (WPARAM)parentdat->ptszID, (LPARAM)ui1->pszUID), SIZEOF(ptszBuf));
- else
+ else
mir_sntprintf(ptszBuf, SIZEOF(ptszBuf), _T("<b>%s:</b>\t%s\n<b>%s:</b>\t%s\n<b>%s:</b>\t%s"),
TranslateT("Nick"), ui1->pszNick,
TranslateT("Unique id"), ui1->pszUID,
|