diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-09-17 18:58:05 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-09-17 19:20:47 +0300 |
commit | 9de2ad3474e34383dfee6166d31983ba24ef0da8 (patch) | |
tree | 08cd3788ee530c471057974f5bc668605cbfda47 /include/svx | |
parent | a9cd260ebb7bf5760eee536cd911780773c6051d (diff) |
WaE: passing class rtl::OUString by value, rather pass by reference
Change-Id: Ie42cc9cbf13467d6c1644dc35e361250bd3a9533
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/PaletteManager.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/PaletteManager.hxx b/include/svx/PaletteManager.hxx index cb70d2c4917d..7070bc1f503b 100644 --- a/include/svx/PaletteManager.hxx +++ b/include/svx/PaletteManager.hxx @@ -67,8 +67,8 @@ public: void AddRecentColor(const Color& rRecentColor); void SetBtnUpdater(svx::ToolboxButtonColorUpdater* pBtnUpdater); - void PopupColorPicker(const OUString aCommand); - static void DispatchColorCommand(const OUString aCommand, const Color aColor); + void PopupColorPicker(const OUString& aCommand); + static void DispatchColorCommand(const OUString& aCommand, const Color aColor); }; #endif // INCLUDED_SVX_PALETTEMANAGER_HXX |