summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-19 10:31:19 +0200
committerNoel Grandin <noel@peralex.com>2013-08-22 10:49:24 +0200
commit3139b8f3fa3aabda85c3221f83745cc53dca583a (patch)
tree6d6f77073d7e7724b464f8bff9684c10d1ec91db /svtools
parent018785fb6634b88da03eaddee53faf5adf4107f5 (diff)
convert include/svtools/helpopt.hxx from String to OUString
and remove unused IdList typedef. Change-Id: Ia154a8255f1a745cede24f112868c074adce0fbe
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/config/helpopt.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/svtools/source/config/helpopt.cxx b/svtools/source/config/helpopt.cxx
index aa1a87402e55..d9f0d3d8db0e 100644
--- a/svtools/source/config/helpopt.cxx
+++ b/svtools/source/config/helpopt.cxx
@@ -49,9 +49,9 @@ class SvtHelpOptions_Impl : public utl::ConfigItem
sal_Bool bExtendedHelp;
sal_Bool bHelpTips;
sal_Bool bWelcomeScreen;
- String aLocale;
- String aSystem;
- String sHelpStyleSheet;
+ OUString aLocale;
+ OUString aSystem;
+ OUString sHelpStyleSheet;
DECLARE_STL_USTRINGACCESS_MAP( sal_Int32, MapString2Int );
MapString2Int aURLIgnoreCounters;
@@ -73,11 +73,11 @@ public:
void SetWelcomeScreen( sal_Bool b ) { bWelcomeScreen = b; SetModified(); }
sal_Bool IsWelcomeScreen() const { return bWelcomeScreen; }
- String GetLocale() const { return aLocale; }
- String GetSystem() const { return aSystem; }
+ OUString GetLocale() const { return aLocale; }
+ OUString GetSystem() const { return aSystem; }
- const String& GetHelpStyleSheet()const{return sHelpStyleSheet;}
- void SetHelpStyleSheet(const String& rStyleSheet){sHelpStyleSheet = rStyleSheet; SetModified();}
+ const OUString& GetHelpStyleSheet()const{return sHelpStyleSheet;}
+ void SetHelpStyleSheet(const OUString& rStyleSheet){sHelpStyleSheet = rStyleSheet; SetModified();}
static ::osl::Mutex & getInitMutex();
};
@@ -316,17 +316,17 @@ sal_Bool SvtHelpOptions::IsWelcomeScreen() const
return pImp->IsWelcomeScreen();
}
-String SvtHelpOptions::GetSystem() const
+OUString SvtHelpOptions::GetSystem() const
{
return pImp->GetSystem();
}
-const String& SvtHelpOptions::GetHelpStyleSheet()const
+const OUString& SvtHelpOptions::GetHelpStyleSheet()const
{
return pImp->GetHelpStyleSheet();
}
-void SvtHelpOptions::SetHelpStyleSheet(const String& rStyleSheet)
+void SvtHelpOptions::SetHelpStyleSheet(const OUString& rStyleSheet)
{
pImp->SetHelpStyleSheet(rStyleSheet);
}