diff options
Diffstat (limited to 'plugins/QuickMessages/src/options.cpp')
-rw-r--r-- | plugins/QuickMessages/src/options.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/plugins/QuickMessages/src/options.cpp b/plugins/QuickMessages/src/options.cpp index e3e20d5b75..b5add8e26f 100644 --- a/plugins/QuickMessages/src/options.cpp +++ b/plugins/QuickMessages/src/options.cpp @@ -183,7 +183,7 @@ void SetMenuEntryProperties(HWND hdlg) else
{
if (!bd->pszOpValue)
- bd->pszOpValue=mir_tstrdup(_T("Enter Value"));
+ bd->pszOpValue=mir_tstrdup(LPGENT("Enter Value"));
}
if(TreeView_GetParent(hMenuTree, tvi.hItem))
bd->fEntryOpType|=QMF_EX_CHILD;
@@ -992,11 +992,7 @@ INT_PTR CALLBACK OptionsProc(HWND hdlg,UINT msg,WPARAM wparam,LPARAM lparam) int count=TreeView_GetCount(hButtonsList);
if (count>10) break;
if(g_iOPButtonsCount==99){
- MessageBox(NULL,_T("Congratulation!\n\
- You have clicked this button 100 times!\n\
- There was access violation at this point...\n\
- And now function for freeing resources must be called...\n\
- But no! there's only break :D"),_T("You win!"),MB_OK);
+ MessageBox(NULL, TranslateT("Congratulation!\r\nYou have clicked this button 100 times!\r\nThere was access violation at this point...\r\nAnd now function for freeing resources must be called...\r\nBut no! there's only break :D"), TranslateT("You win!"),MB_OK);
break;
}
|