diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-20 06:10:59 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-20 06:10:59 +0000 |
commit | aefa6a3d6339f24ec07985e7eea71e99fa56feee (patch) | |
tree | 5237d3b437f529adf3f80c942991bb611498cc53 /plugins/UserInfoEx/src | |
parent | 83b409481df770411ce3113a8bb1a787e991e767 (diff) |
fixed header bar info
git-svn-id: http://svn.miranda-ng.org/main/trunk@12949 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx/src')
-rw-r--r-- | plugins/UserInfoEx/src/dlg_propsheet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UserInfoEx/src/dlg_propsheet.cpp b/plugins/UserInfoEx/src/dlg_propsheet.cpp index 327545b488..2561a13cd1 100644 --- a/plugins/UserInfoEx/src/dlg_propsheet.cpp +++ b/plugins/UserInfoEx/src/dlg_propsheet.cpp @@ -1107,7 +1107,7 @@ static INT_PTR CALLBACK DlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lPar HWND hName = GetDlgItem(hDlg, TXT_NAME);
SetWindowText(hName, pszName);
SetWindowText(hDlg, CMString(FORMAT, _T("%s - %s"), pszName, TranslateT("edit contact information")));
- SetDlgItemText(hDlg, IDC_HEADERBAR, CMString(FORMAT, _T("%s"), pszName));
+ SetDlgItemText(hDlg, IDC_HEADERBAR, TranslateT("View personal user details and more"));
// redraw the name control
POINT pt = { 0, 0 };
|