diff options
-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); |