summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-08 08:29:39 +0200
committerNoel Grandin <noel@peralex.com>2013-08-15 09:11:31 +0200
commita912a3027ca611070727b43851fb06d0ec4cfc11 (patch)
treece8d1d05df3458369cac4f4677c9acb8f22bcb5e /svtools
parenta1fb61ffaf0f2f87788e5b46f82ef6e6d3aea496 (diff)
convert include/svtools/wizardmachine.hxx from String to OUString
Change-Id: I8adc23b10f23a8a25e93be671ce16845a44fa57f
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/dialogs/wizardmachine.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/dialogs/wizardmachine.cxx b/svtools/source/dialogs/wizardmachine.cxx
index 9b25679a0ef0..af1522c64588 100644
--- a/svtools/source/dialogs/wizardmachine.cxx
+++ b/svtools/source/dialogs/wizardmachine.cxx
@@ -92,7 +92,7 @@ namespace svt
//=====================================================================
struct WizardMachineImplData : public WizardTypes
{
- String sTitleBase; // the base for the title
+ OUString sTitleBase; // the base for the title
::std::stack< WizardState > aStateHistory; // the history of all states (used for implementing "Back")
WizardState nFirstUnknownPage;
@@ -240,7 +240,7 @@ namespace svt
}
//---------------------------------------------------------------------
- void OWizardMachine::setTitleBase(const String& _rTitleBase)
+ void OWizardMachine::setTitleBase(const OUString& _rTitleBase)
{
m_pImpl->sTitleBase = _rTitleBase;
implUpdateTitle();