diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-19 15:45:30 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-10-04 08:48:49 +0200 |
commit | 669ec69ddb76b8578552b47989d4ec31fc8123d0 (patch) | |
tree | cf964737ed1bbd7d49c8275caf7468edb2b80ada /sc | |
parent | 7d98cbb5beafe6f0853e0232bd7b51098cbcae80 (diff) |
convert sw/../CellAppearancePropertyPanel.hxx from String to OUString
Change-Id: I122597eb38d86e1f3b3fa13bddbd02f822ac33ec
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/sidebar/CellAppearancePropertyPanel.cxx | 4 | ||||
-rw-r--r-- | sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/sidebar/CellAppearancePropertyPanel.cxx b/sc/source/ui/sidebar/CellAppearancePropertyPanel.cxx index a51d8db7865a..d7bc7ab39c38 100644 --- a/sc/source/ui/sidebar/CellAppearancePropertyPanel.cxx +++ b/sc/source/ui/sidebar/CellAppearancePropertyPanel.cxx @@ -87,7 +87,7 @@ svx::sidebar::PopupControl* CellAppearancePropertyPanel::CreateFillColorPopupCon } void CellAppearancePropertyPanel::SetFillColor( - const String& /*rsColorName*/, + const OUString& /*rsColorName*/, const Color aColor) { const SvxColorItem aColorItem(aColor, SID_BACKGROUND_COLOR); @@ -111,7 +111,7 @@ svx::sidebar::PopupControl* CellAppearancePropertyPanel::CreateLineColorPopupCon } void CellAppearancePropertyPanel::SetLineColor( - const String& /*rsColorName*/, + const OUString& /*rsColorName*/, const Color aColor) { const SvxColorItem aColorItem(aColor, SID_FRAME_LINECOLOR); diff --git a/sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx b/sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx index 559829744cc7..ee253952172e 100644 --- a/sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx +++ b/sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx @@ -156,11 +156,11 @@ private: // for fill color picker svx::sidebar::PopupControl* CreateFillColorPopupControl(svx::sidebar::PopupContainer* pParent); - void SetFillColor(const String& rsColorName, const Color aColor); + void SetFillColor(const OUString& rsColorName, const Color aColor); // for line color picker svx::sidebar::PopupControl* CreateLineColorPopupControl(svx::sidebar::PopupContainer* pParent); - void SetLineColor(const String& rsColorName, const Color aColor); + void SetLineColor(const OUString& rsColorName, const Color aColor); // for CellLineStyle popup svx::sidebar::PopupControl* CreateCellLineStylePopupControl(svx::sidebar::PopupContainer* pParent); |