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/source/ui/attrdlg | |
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/source/ui/attrdlg')
-rw-r--r-- | sc/source/ui/attrdlg/scdlgfact.cxx | 4 | ||||
-rw-r--r-- | sc/source/ui/attrdlg/scdlgfact.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/attrdlg/scdlgfact.cxx b/sc/source/ui/attrdlg/scdlgfact.cxx index cfb0c720f647..dc62cde4d3cf 100644 --- a/sc/source/ui/attrdlg/scdlgfact.cxx +++ b/sc/source/ui/attrdlg/scdlgfact.cxx @@ -984,8 +984,8 @@ AbstractScInsertCellDlg * ScAbstractDialogFactory_Impl::CreateScInsertCellDlg( W AbstractScInsertContentsDlg * ScAbstractDialogFactory_Impl::CreateScInsertContentsDlg( Window* pParent, int nId, - sal_uInt16 nCheckDefaults, - const String* pStrTitle ) + sal_uInt16 nCheckDefaults, + const OUString* pStrTitle ) { ScInsertContentsDlg * pDlg=NULL; switch ( nId ) diff --git a/sc/source/ui/attrdlg/scdlgfact.hxx b/sc/source/ui/attrdlg/scdlgfact.hxx index dd9111586713..973a412a7df5 100644 --- a/sc/source/ui/attrdlg/scdlgfact.hxx +++ b/sc/source/ui/attrdlg/scdlgfact.hxx @@ -455,8 +455,8 @@ public: virtual AbstractScInsertContentsDlg * CreateScInsertContentsDlg( Window* pParent, //add for ScInsertContentsDlg int nId, - sal_uInt16 nCheckDefaults = 0, - const String* pStrTitle = NULL ); + sal_uInt16 nCheckDefaults = 0, + const OUString* pStrTitle = NULL ); virtual AbstractScInsertTableDlg * CreateScInsertTableDlg(Window* pParent, ScViewData& rViewData, SCTAB nTabCount, bool bFromFile); |