From 0ff28f7c5ffaa46ed5b21bee965e66bb9108dfe2 Mon Sep 17 00:00:00 2001
From: Rozhuk Ivan <rozhuk.im@gmail.com>
Date: Sun, 14 Dec 2014 04:44:35 +0000
Subject: GetWindowText(GetDlgItem(...)) -> GetDlgItemText(...)

git-svn-id: http://svn.miranda-ng.org/main/trunk@11390 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
---
 plugins/SplashScreen/src/options.cpp | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

(limited to 'plugins/SplashScreen')

diff --git a/plugins/SplashScreen/src/options.cpp b/plugins/SplashScreen/src/options.cpp
index fddf1bb56a..1e1d955907 100644
--- a/plugins/SplashScreen/src/options.cpp
+++ b/plugins/SplashScreen/src/options.cpp
@@ -307,25 +307,25 @@ INT_PTR CALLBACK DlgProcOptions(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lP
 					{
 						TCHAR tmp[MAX_PATH];
 
-						GetWindowText(GetDlgItem(hwndDlg, IDC_SPLASHPATH), tmp, SIZEOF(tmp));
+						GetDlgItemText(hwndDlg, IDC_SPLASHPATH, tmp, SIZEOF(tmp));
 						db_set_ts(NULL, MODNAME, "Path", tmp);
 
-						GetWindowText(GetDlgItem(hwndDlg, IDC_SNDPATH), tmp, SIZEOF(tmp));
+						GetDlgItemText(hwndDlg, IDC_SNDPATH, tmp, SIZEOF(tmp));
 						db_set_ts(NULL, MODNAME, "Sound", tmp);
 
-						GetWindowText(GetDlgItem(hwndDlg, IDC_VERSIONPREFIX), tmp, SIZEOF(tmp));
+						GetDlgItemText(hwndDlg, IDC_VERSIONPREFIX, tmp, SIZEOF(tmp));
 						db_set_ts(NULL, MODNAME, "VersionPrefix", tmp);
 						_tcscpy_s(szPrefix, tmp);
 
-						GetWindowText(GetDlgItem(hwndDlg, IDC_SHOWTIME), tmp, SIZEOF(tmp));
+						GetDlgItemText(hwndDlg, IDC_SHOWTIME, tmp, SIZEOF(tmp));
 						db_set_dw(NULL, MODNAME, "TimeToShow", _ttoi(tmp));
 						options.showtime = _ttoi(tmp);
 
-						GetWindowText(GetDlgItem(hwndDlg, IDC_FISTEP), tmp, SIZEOF(tmp));
+						GetDlgItemText(hwndDlg, IDC_FISTEP, tmp, SIZEOF(tmp));
 						db_set_dw(NULL, MODNAME, "FadeinSpeed", _ttoi(tmp));
 						options.fisteps = _ttoi(tmp);
 
-						GetWindowText(GetDlgItem(hwndDlg, IDC_FOSTEP), tmp, SIZEOF(tmp));
+						GetDlgItemText(hwndDlg, IDC_FOSTEP, tmp, SIZEOF(tmp));
 						db_set_dw(NULL, MODNAME, "FadeoutSpeed", _ttoi(tmp));
 						options.fosteps = _ttoi(tmp);
 
-- 
cgit v1.2.3