diff options
author | Noel Grandin <noel@peralex.com> | 2014-05-14 14:34:42 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-05-14 16:54:27 +0200 |
commit | b2096deaff52f462e2df4e7bdc9816bb3604fb08 (patch) | |
tree | 3df2f9284132042730e12c3f11b6b7a5f13d35cf /framework/source/fwe | |
parent | 83d77931e03908c1718d9dc48f29c1db984fba85 (diff) |
various loplugin:passsequencebyref
Change-Id: Id1045a7f66b4fa10b6491587ba07246a31ceba72
Diffstat (limited to 'framework/source/fwe')
-rw-r--r-- | framework/source/fwe/xml/statusbardocumenthandler.cxx | 12 | ||||
-rw-r--r-- | framework/source/fwe/xml/toolboxdocumenthandler.cxx | 18 |
2 files changed, 15 insertions, 15 deletions
diff --git a/framework/source/fwe/xml/statusbardocumenthandler.cxx b/framework/source/fwe/xml/statusbardocumenthandler.cxx index 0b706edb1e28..ca170df325c5 100644 --- a/framework/source/fwe/xml/statusbardocumenthandler.cxx +++ b/framework/source/fwe/xml/statusbardocumenthandler.cxx @@ -89,12 +89,12 @@ static const char ITEM_DESCRIPTOR_WIDTH[] = "Width"; static const char ITEM_DESCRIPTOR_TYPE[] = "Type"; static void ExtractStatusbarItemParameters( - const Sequence< PropertyValue > rProp, - OUString& rCommandURL, - OUString& rHelpURL, - sal_Int16& rOffset, - sal_Int16& rStyle, - sal_Int16& rWidth ) + const Sequence< PropertyValue >& rProp, + OUString& rCommandURL, + OUString& rHelpURL, + sal_Int16& rOffset, + sal_Int16& rStyle, + sal_Int16& rWidth ) { for ( sal_Int32 i = 0; i < rProp.getLength(); i++ ) { diff --git a/framework/source/fwe/xml/toolboxdocumenthandler.cxx b/framework/source/fwe/xml/toolboxdocumenthandler.cxx index 3c9038ca870f..639d33948a7a 100644 --- a/framework/source/fwe/xml/toolboxdocumenthandler.cxx +++ b/framework/source/fwe/xml/toolboxdocumenthandler.cxx @@ -56,15 +56,15 @@ static const char ITEM_DESCRIPTOR_STYLE[] = "Style"; static const char ITEM_DESCRIPTOR_VISIBLE[] = "IsVisible"; static const char ITEM_DESCRIPTOR_WIDTH[] = "Width"; -static void ExtractToolbarParameters( const Sequence< PropertyValue > rProp, - OUString& rCommandURL, - OUString& rLabel, - OUString& rHelpURL, - OUString& rTooltip, - sal_Int16& rStyle, - sal_Int16& rWidth, - bool& rVisible, - sal_Int16& rType ) +static void ExtractToolbarParameters( const Sequence< PropertyValue >& rProp, + OUString& rCommandURL, + OUString& rLabel, + OUString& rHelpURL, + OUString& rTooltip, + sal_Int16& rStyle, + sal_Int16& rWidth, + bool& rVisible, + sal_Int16& rType ) { for ( sal_Int32 i = 0; i < rProp.getLength(); i++ ) { |