diff options
Diffstat (limited to 'uui/source/trylater.cxx')
-rw-r--r-- | uui/source/trylater.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/uui/source/trylater.cxx b/uui/source/trylater.cxx index d8aaad203270..69d952870e4a 100644 --- a/uui/source/trylater.cxx +++ b/uui/source/trylater.cxx @@ -31,14 +31,14 @@ TryLaterQueryBox::TryLaterQueryBox( Window* pParent, ResMgr* pResMgr, const String& aMessage ) : MessBox(pParent, 0, - String( ResId( STR_TRYLATER_TITLE, *pResMgr ) ), + ResId(STR_TRYLATER_TITLE, *pResMgr).toString(), aMessage ) { SetImage( QueryBox::GetStandardImage() ); - AddButton( String( ResId( STR_TRYLATER_RETRYSAVING_BTN, *pResMgr ) ), RET_YES, + AddButton(ResId(STR_TRYLATER_RETRYSAVING_BTN, *pResMgr).toString(), RET_YES, BUTTONDIALOG_DEFBUTTON | BUTTONDIALOG_OKBUTTON | BUTTONDIALOG_FOCUSBUTTON); - AddButton( String( ResId( STR_TRYLATER_SAVEAS_BTN, *pResMgr ) ), RET_NO, 0); + AddButton(ResId(STR_TRYLATER_SAVEAS_BTN, *pResMgr).toString(), RET_NO, 0); AddButton( BUTTON_CANCEL, RET_CANCEL, BUTTONDIALOG_CANCELBUTTON ); SetButtonHelpText( RET_YES, String::EmptyString() ); |