From b0e15a2d768b04ad5a5bb1c591c6b043469baeb5 Mon Sep 17 00:00:00 2001 From: Rozhuk Ivan Date: Sun, 14 Dec 2014 05:46:09 +0000 Subject: SendMessage(.... WM_SETTEXT...) -> SetWindowText(...) git-svn-id: http://svn.miranda-ng.org/main/trunk@11392 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/SkypeClassic/src/alogon.cpp | 4 ++-- protocols/Twitter/src/ui.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'protocols') diff --git a/protocols/SkypeClassic/src/alogon.cpp b/protocols/SkypeClassic/src/alogon.cpp index 6fc21d2cce..d6ca9c3a9b 100644 --- a/protocols/SkypeClassic/src/alogon.cpp +++ b/protocols/SkypeClassic/src/alogon.cpp @@ -69,13 +69,13 @@ static BOOL CALLBACK EnumWindowsProc(HWND hWnd, LPARAM lParam) if(!db_get_ws(NULL,SKYPE_PROTONAME,"LoginUserName",&dbv)) { - SendMessageW(userName, WM_SETTEXT, 0, (LPARAM)dbv.pwszVal); + SetWindowTextW(userName, dbv.pwszVal); db_free(&dbv); } if(!db_get_ws(NULL,SKYPE_PROTONAME,"LoginPassword",&dbv)) { - SendMessageW(password, WM_SETTEXT, 0, (LPARAM)dbv.pwszVal); + SetWindowTextW(password, dbv.pwszVal); db_free(&dbv); SendMessageW(password, WM_CHAR, 13, 0); } diff --git a/protocols/Twitter/src/ui.cpp b/protocols/Twitter/src/ui.cpp index 3314e72dde..5b0d962583 100644 --- a/protocols/Twitter/src/ui.cpp +++ b/protocols/Twitter/src/ui.cpp @@ -113,7 +113,7 @@ INT_PTR CALLBACK tweet_proc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam // Set window title TCHAR title[512]; mir_sntprintf(title, SIZEOF(title), _T("Send Tweet for %s"), proto->m_tszUserName); - SendMessage(hwndDlg, WM_SETTEXT, 0, (LPARAM)title); + SetWindowText(hwndDlg, title); return true; case WM_COMMAND: -- cgit v1.2.3