summaryrefslogtreecommitdiff
path: root/protocols/Gadu-Gadu/src
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-04-19 17:28:55 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-04-19 17:28:55 +0000
commit51510cb684622c896487e78651e2252ccc6060ab (patch)
tree948dc39ecac123ac3368b257dbadb65669fc2b58 /protocols/Gadu-Gadu/src
parentf85e431c9311db1f3703d85b80b214639b0eedcf (diff)
fixed header bar info
git-svn-id: http://svn.miranda-ng.org/main/trunk@12938 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Gadu-Gadu/src')
-rw-r--r--protocols/Gadu-Gadu/src/sessions.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Gadu-Gadu/src/sessions.cpp b/protocols/Gadu-Gadu/src/sessions.cpp
index e9e0205201..8218acdf79 100644
--- a/protocols/Gadu-Gadu/src/sessions.cpp
+++ b/protocols/Gadu-Gadu/src/sessions.cpp
@@ -167,9 +167,9 @@ static INT_PTR CALLBACK gg_sessions_viewdlg(HWND hwndDlg, UINT message, WPARAM w
TCHAR oldTitle[256], newTitle[256];
HANDLE hProtoAckEvent;
- GetDlgItemText(hwndDlg, IDC_HEADERBAR, oldTitle, SIZEOF(oldTitle));
+ GetWindowText(hwndDlg, oldTitle, SIZEOF(oldTitle));
mir_sntprintf(newTitle, SIZEOF(newTitle), oldTitle, gg->m_tszUserName);
- SetDlgItemText(hwndDlg, IDC_HEADERBAR, newTitle);
+ SetWindowText(hwndDlg, newTitle);
WindowSetIcon(hwndDlg, "sessions");
if (hHandCursor == NULL)