diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-06-30 13:49:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-06-30 20:40:15 +0100 |
commit | 0306e253fef4c25d4fe39ff9b5711c9487adc47b (patch) | |
tree | 10c71cd44b1d4899bd5b62495d13370df5993b4a /uui | |
parent | d70786a761025e7689a39d4026c8965d74962d4d (diff) |
XubString->OUString
Change-Id: I40ff06facc304630ccedd82d2f20b3573bdc5cb4
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/alreadyopen.cxx | 4 | ||||
-rw-r--r-- | uui/source/filechanged.cxx | 2 | ||||
-rw-r--r-- | uui/source/openlocked.cxx | 4 | ||||
-rw-r--r-- | uui/source/trylater.cxx | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/uui/source/alreadyopen.cxx b/uui/source/alreadyopen.cxx index 468cb43f1c17..002d05244542 100644 --- a/uui/source/alreadyopen.cxx +++ b/uui/source/alreadyopen.cxx @@ -42,8 +42,8 @@ AlreadyOpenQueryBox::AlreadyOpenQueryBox( Window* pParent, ResMgr* pResMgr, cons AddButton( BUTTON_CANCEL, RET_CANCEL, BUTTONDIALOG_CANCELBUTTON ); } - SetButtonHelpText( RET_YES, String::EmptyString() ); - SetButtonHelpText( RET_NO, String::EmptyString() ); + SetButtonHelpText( RET_YES, OUString() ); + SetButtonHelpText( RET_NO, OUString() ); } AlreadyOpenQueryBox::~AlreadyOpenQueryBox() diff --git a/uui/source/filechanged.cxx b/uui/source/filechanged.cxx index 01217623a818..b8c1311a815a 100644 --- a/uui/source/filechanged.cxx +++ b/uui/source/filechanged.cxx @@ -31,7 +31,7 @@ FileChangedQueryBox::FileChangedQueryBox( Window* pParent, ResMgr* pResMgr ) : BUTTONDIALOG_DEFBUTTON | BUTTONDIALOG_OKBUTTON | BUTTONDIALOG_FOCUSBUTTON); AddButton( BUTTON_CANCEL, RET_CANCEL, BUTTONDIALOG_CANCELBUTTON ); - SetButtonHelpText( RET_YES, String::EmptyString() ); + SetButtonHelpText( RET_YES, OUString() ); SetMessText(ResId(STR_FILECHANGED_MSG, *pResMgr).toString()); } diff --git a/uui/source/openlocked.cxx b/uui/source/openlocked.cxx index c40b4841586d..f58a871f79c1 100644 --- a/uui/source/openlocked.cxx +++ b/uui/source/openlocked.cxx @@ -33,8 +33,8 @@ OpenLockedQueryBox::OpenLockedQueryBox( Window* pParent, ResMgr* pResMgr, const AddButton(ResId(STR_OPENLOCKED_OPENCOPY_BTN, *pResMgr).toString(), RET_NO, 0); AddButton( BUTTON_CANCEL, RET_CANCEL, BUTTONDIALOG_CANCELBUTTON ); - SetButtonHelpText( RET_YES, String() ); - SetButtonHelpText( RET_NO, String() ); + SetButtonHelpText( RET_YES, OUString() ); + SetButtonHelpText( RET_NO, OUString() ); #ifdef WNT // bnc#656566 diff --git a/uui/source/trylater.cxx b/uui/source/trylater.cxx index 411ba0f8a5eb..57825c15ebe6 100644 --- a/uui/source/trylater.cxx +++ b/uui/source/trylater.cxx @@ -32,8 +32,8 @@ TryLaterQueryBox::TryLaterQueryBox( Window* pParent, ResMgr* pResMgr, const Stri AddButton(ResId(STR_TRYLATER_SAVEAS_BTN, *pResMgr).toString(), RET_NO, 0); AddButton( BUTTON_CANCEL, RET_CANCEL, BUTTONDIALOG_CANCELBUTTON ); - SetButtonHelpText( RET_YES, String::EmptyString() ); - SetButtonHelpText( RET_NO, String::EmptyString() ); + SetButtonHelpText( RET_YES, OUString() ); + SetButtonHelpText( RET_NO, OUString() ); } TryLaterQueryBox::~TryLaterQueryBox() |