diff options
author | Jean-Noël Rouvignac <jn.rouvignac@gmail.com> | 2013-02-14 20:15:38 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-02-19 13:52:30 +0000 |
commit | 742515639168cd35a0c2036a5bf6c46b2a3a554e (patch) | |
tree | b730261a267719fe737315ab375eea88638aa331 /sc/inc/global.hxx | |
parent | 1dace0c3e0972c2bde8db177433b7d095025bcca (diff) |
fdo#38838 ScGlobal::GetRscString() now returns OUString instead of String.
Cleaned up the call sites.
Change-Id: I6c688cecd4f872ed064ccfa3af4b402a779860dc
Reviewed-on: https://gerrit.libreoffice.org/2155
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/inc/global.hxx')
-rw-r--r-- | sc/inc/global.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/global.hxx b/sc/inc/global.hxx index 53ede608600d..978985a47cdb 100644 --- a/sc/inc/global.hxx +++ b/sc/inc/global.hxx @@ -494,7 +494,7 @@ class ScGlobal static FuncCollection* pFuncCollection; static ScUnoAddInCollection* pAddInCollection; static ScUserList* pUserList; - static String** ppRscString; + static OUString** ppRscString; static String* pStrScDoc; static String* pEmptyString; static ::rtl::OUString* pEmptyOUString; @@ -553,7 +553,7 @@ public: SC_DLLPUBLIC static ScUnoAddInCollection* GetAddInCollection(); SC_DLLPUBLIC static ScUserList* GetUserList(); static void SetUserList( const ScUserList* pNewList ); - SC_DLLPUBLIC static const String& GetRscString( sal_uInt16 nIndex ); + SC_DLLPUBLIC static const OUString& GetRscString( sal_uInt16 nIndex ); static void OpenURL( const String& rURL, const String& rTarget ); SC_DLLPUBLIC static String GetAbsDocName( const String& rFileName, SfxObjectShell* pShell ); |