summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/svx/ColorSets.hxx2
-rw-r--r--svx/source/styles/ColorSets.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/ColorSets.hxx b/include/svx/ColorSets.hxx
index 009ee4017af4..b8c32ff1350b 100644
--- a/include/svx/ColorSets.hxx
+++ b/include/svx/ColorSets.hxx
@@ -24,7 +24,7 @@ class SVX_DLLPUBLIC ColorSet
OUString maName;
std::vector<Color> maColors;
public:
- ColorSet(OUString aName);
+ ColorSet(OUString const & aName);
~ColorSet();
void add(sal_uInt32 nIndex, sal_uInt32 aColorData)
diff --git a/svx/source/styles/ColorSets.cxx b/svx/source/styles/ColorSets.cxx
index 43ac4a73dcb4..819790a5cf22 100644
--- a/svx/source/styles/ColorSets.cxx
+++ b/svx/source/styles/ColorSets.cxx
@@ -13,7 +13,7 @@
namespace svx
{
-ColorSet::ColorSet(OUString aName)
+ColorSet::ColorSet(OUString const & aName)
: maName(aName)
, maColors(12)
{}