diff options
Diffstat (limited to 'svtools/source/uno/wizard')
-rw-r--r-- | svtools/source/uno/wizard/unowizard.cxx | 6 | ||||
-rw-r--r-- | svtools/source/uno/wizard/wizardshell.cxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/uno/wizard/unowizard.cxx b/svtools/source/uno/wizard/unowizard.cxx index 4ec742a24add..69c34b00ae42 100644 --- a/svtools/source/uno/wizard/unowizard.cxx +++ b/svtools/source/uno/wizard/unowizard.cxx @@ -198,7 +198,7 @@ namespace { if (std::any_of(i_rPaths.begin(), i_rPaths.end(), [nFirstPageId](const Sequence< sal_Int16 >& rPath) { return rPath[0] != nFirstPageId; })) throw IllegalArgumentException( - "All paths must start with the same page id.", + u"All paths must start with the same page id."_ustr, i_rContext, 2 ); } @@ -252,12 +252,12 @@ namespace { OUString SAL_CALL Wizard::getImplementationName() { - return "com.sun.star.comp.svtools.uno.Wizard"; + return u"com.sun.star.comp.svtools.uno.Wizard"_ustr; } Sequence< OUString > SAL_CALL Wizard::getSupportedServiceNames() { - return { "com.sun.star.ui.dialogs.Wizard" }; + return { u"com.sun.star.ui.dialogs.Wizard"_ustr }; } Reference< XPropertySetInfo > SAL_CALL Wizard::getPropertySetInfo() diff --git a/svtools/source/uno/wizard/wizardshell.cxx b/svtools/source/uno/wizard/wizardshell.cxx index 9a6870b2cdfe..39487d13b55a 100644 --- a/svtools/source/uno/wizard/wizardshell.cxx +++ b/svtools/source/uno/wizard/wizardshell.cxx @@ -182,7 +182,7 @@ namespace svt::uno { public: EmptyPage(weld::Widget* pParent, weld::DialogController* pController) - : BuilderPage(pParent, pController, "svt/ui/emptypage.ui", "EmptyPage") + : BuilderPage(pParent, pController, u"svt/ui/emptypage.ui"_ustr, u"EmptyPage"_ustr) { m_xContainer->set_size_request(m_xContainer->get_approximate_digit_width() * 70, m_xContainer->get_text_height() * 10); |