summaryrefslogtreecommitdiff
path: root/plugins/QuickContacts
diff options
context:
space:
mode:
authorRozhuk Ivan <rozhuk.im@gmail.com>2014-12-14 05:46:09 +0000
committerRozhuk Ivan <rozhuk.im@gmail.com>2014-12-14 05:46:09 +0000
commitb0e15a2d768b04ad5a5bb1c591c6b043469baeb5 (patch)
tree380ae36ef460ec5e9fe17b9736d0aa3514f911af /plugins/QuickContacts
parentbc7df32e3b5a264c0eeb6a20b723cdab02cf7688 (diff)
SendMessage(.... WM_SETTEXT...) -> SetWindowText(...)
git-svn-id: http://svn.miranda-ng.org/main/trunk@11392 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/QuickContacts')
-rw-r--r--plugins/QuickContacts/src/quickcontacts.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/QuickContacts/src/quickcontacts.cpp b/plugins/QuickContacts/src/quickcontacts.cpp
index f06157b8e5..2ae6d2011b 100644
--- a/plugins/QuickContacts/src/quickcontacts.cpp
+++ b/plugins/QuickContacts/src/quickcontacts.cpp
@@ -499,8 +499,8 @@ int CheckText(HWND hdlg, TCHAR *sztext, BOOL only_enable = FALSE)
{
if (lstreq(sztext, GetListName(contacts[loop]), len) == 0)
{
- SendMessage(hdlg, WM_SETTEXT, 0, (LPARAM) GetListName(contacts[loop]));
- SendMessage(hdlg, EM_SETSEL, (WPARAM) len, (LPARAM) -1);
+ SetWindowText(hdlg, GetListName(contacts[loop]));
+ SendMessage(hdlg, EM_SETSEL, (WPARAM) len, (LPARAM)-1);
EnableButtons(hwndMain, contacts[loop]->hcontact);
return 0;
}