summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-20 14:55:41 +0200
committerNoel Grandin <noel@peralex.com>2013-10-04 08:48:53 +0200
commit0a918d70f178b901794812d304686a83c4cfa9b4 (patch)
treeb56edbcd03ec83fe7f396fa0921046b8414a59f0
parentf2f971b81000410dec06ed85dd323aa03f1f77b7 (diff)
convert sc/.../tabbgcolordlg.hxx from String to OUString
Change-Id: I10db7ec99599947218c7d2e9cc7db1468ff5cba7
-rw-r--r--sc/source/ui/inc/tabbgcolordlg.hxx8
-rw-r--r--sc/source/ui/miscdlgs/tabbgcolordlg.cxx4
2 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/ui/inc/tabbgcolordlg.hxx b/sc/source/ui/inc/tabbgcolordlg.hxx
index 3b6de2cba7a4..e274fef3927e 100644
--- a/sc/source/ui/inc/tabbgcolordlg.hxx
+++ b/sc/source/ui/inc/tabbgcolordlg.hxx
@@ -31,8 +31,8 @@ class ScTabBgColorDlg : public ModalDialog
{
public:
ScTabBgColorDlg( Window* pParent,
- const String& rTitle,
- const String& rTabBgColorNoColorText,
+ const OUString& rTitle,
+ const OUString& rTabBgColorNoColorText,
const Color& rDefaultColor,
const OString& nHelpId );
~ScTabBgColorDlg();
@@ -56,8 +56,8 @@ private:
CancelButton aBtnCancel;
HelpButton aBtnHelp;
Color aTabBgColor;
- const String aTabBgColorNoColorText;
- OString msHelpId;
+ const OUString aTabBgColorNoColorText;
+ OString msHelpId;
void FillColorValueSets_Impl();
diff --git a/sc/source/ui/miscdlgs/tabbgcolordlg.cxx b/sc/source/ui/miscdlgs/tabbgcolordlg.cxx
index e263368d1455..2c7d2266fdc2 100644
--- a/sc/source/ui/miscdlgs/tabbgcolordlg.cxx
+++ b/sc/source/ui/miscdlgs/tabbgcolordlg.cxx
@@ -42,8 +42,8 @@
#define HDL(hdl) LINK(this,ScTabBgColorDlg,hdl)
ScTabBgColorDlg::ScTabBgColorDlg( Window* pParent,
- const String& rTitle,
- const String& rTabBgColorNoColorText,
+ const OUString& rTitle,
+ const OUString& rTabBgColorNoColorText,
const Color& rDefaultColor,
const OString& sHelpId ) :
ModalDialog ( pParent, ScResId( RID_SCDLG_TAB_BG_COLOR ) ),