diff options
author | Kirill Volinsky <KVolinsky@COMMON.EU.CORP.TOYOTA.com> | 2017-11-02 08:29:08 +0300 |
---|---|---|
committer | Kirill Volinsky <KVolinsky@COMMON.EU.CORP.TOYOTA.com> | 2017-11-02 08:29:08 +0300 |
commit | 8e436ee2cd6d226ba8c82f8493e77c66d3fb95da (patch) | |
tree | e7a5624f6e7808b913f7ba7ac88bac0ae6dc1851 /plugins/UserInfoEx/src | |
parent | 4590a64cfd943c7f5ac2fb01d309b6c8313a214c (diff) |
UInfoEx: fixed messagebox button title
Diffstat (limited to 'plugins/UserInfoEx/src')
-rw-r--r-- | plugins/UserInfoEx/src/dlg_msgbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UserInfoEx/src/dlg_msgbox.cpp b/plugins/UserInfoEx/src/dlg_msgbox.cpp index 9ed63b7fce..8a83a0e286 100644 --- a/plugins/UserInfoEx/src/dlg_msgbox.cpp +++ b/plugins/UserInfoEx/src/dlg_msgbox.cpp @@ -403,7 +403,7 @@ static INT_PTR CALLBACK MsgBoxProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM l //retNon = IDNONE;
SetDlgItemText(hDlg, IDNONE, LPGENW("None"));
retCancel = IDNO;
- SetDlgItemText(hDlg, IDCANCEL, LPGENW("No"));
+ SetDlgItemText(hDlg, IDCANCEL, LPGENW("Cancel"));
rcCancel.right = rcDlg.right - rcDlg.left - 10;
rcCancel.left = rcCancel.right - caWidth;
rcNone.right = rcCancel.left - 5;
|