diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-08-31 12:05:12 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-08-31 12:05:12 +0200 |
commit | 32fc5177f7c60b4a875a7b10af9a20240177e9f6 (patch) | |
tree | a70f91d37369c914f08f027aeb51228064665a5f /cui | |
parent | 281027ea88d4d683449d4ce2cdb0563223741465 (diff) |
loplugin:stringconstant
Change-Id: Ia4b69d90b2cbeb9aeed9514c12a71abe5e4bd6d5
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/tabpages/tpcolor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/tabpages/tpcolor.cxx b/cui/source/tabpages/tpcolor.cxx index 32c43f8199be..c2428bfbc27c 100644 --- a/cui/source/tabpages/tpcolor.cxx +++ b/cui/source/tabpages/tpcolor.cxx @@ -315,7 +315,7 @@ bool SvxColorTabPage::FillItemSet( SfxItemSet* rSet ) if( ( nDlgType != 0 ) || ( *pPageType == PageType::Color && !*pbAreaTP ) ) { - maPaletteManager.AddRecentColor(aCurrentColor, OUString("#") + aCurrentColor.AsRGBHexString().toAsciiUpperCase()); + maPaletteManager.AddRecentColor(aCurrentColor, "#" + aCurrentColor.AsRGBHexString().toAsciiUpperCase()); rSet->Put( XFillColorItem( OUString(), aCurrentColor ) ); rSet->Put( XFillStyleItem( drawing::FillStyle_SOLID ) ); } |