From bc7df32e3b5a264c0eeb6a20b723cdab02cf7688 Mon Sep 17 00:00:00 2001 From: Rozhuk Ivan Date: Sun, 14 Dec 2014 05:13:25 +0000 Subject: SetWindowText(GetDlgItem(...)) -> SetDlgItemText(...) git-svn-id: http://svn.miranda-ng.org/main/trunk@11391 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Sessions/Src/Options.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/Sessions') diff --git a/plugins/Sessions/Src/Options.cpp b/plugins/Sessions/Src/Options.cpp index 633f5f1737..744bded037 100644 --- a/plugins/Sessions/Src/Options.cpp +++ b/plugins/Sessions/Src/Options.cpp @@ -333,7 +333,7 @@ static INT_PTR CALLBACK OptionsProc(HWND hdlg, UINT msg, WPARAM wparam, LPARAM l ShowWindow(GetDlgItem(hdlg, IDC_OPCLIST), SW_HIDE); EnableWindow(GetDlgItem(hdlg, IDC_DEL), FALSE); //EnableWindow(GetDlgItem(hdlg,IDC_SAVE),TRUE); - SetWindowText(GetDlgItem(hdlg, IDC_EDIT), TranslateT("View")); + SetDlgItemText(hdlg, IDC_EDIT, TranslateT("View")); hOpClistControl = CreateWindowEx(WS_EX_STATICEDGE, _T(CLISTCONTROL_CLASS), _T(""), WS_TABSTOP | WS_VISIBLE | WS_CHILD, 14, 198, 161, 163, hdlg, (HMENU)IDC_EMCLIST, g_hInst, 0); @@ -353,7 +353,7 @@ static INT_PTR CALLBACK OptionsProc(HWND hdlg, UINT msg, WPARAM wparam, LPARAM l ShowWindow(GetDlgItem(hdlg, IDC_OPCLIST), SW_SHOWNA); EnableWindow(GetDlgItem(hdlg, IDC_DEL), TRUE); EnableWindow(GetDlgItem(hdlg, IDC_SAVE), FALSE); - SetWindowText(GetDlgItem(hdlg, IDC_EDIT), TranslateT("Edit")); + SetDlgItemText(hdlg, IDC_EDIT, TranslateT("Edit")); DestroyWindow(hOpClistControl); hOpClistControl = NULL; } -- cgit v1.2.3