diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-13 15:04:48 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-13 15:05:31 +0200 |
commit | fddde2b74a24b1e88e33940ee98f7fa2887dc58c (patch) | |
tree | 4cae7cb69b60c2c4628195caf36b7ec56e573c66 /xmloff/inc/XMLLineNumberingImportContext.hxx | |
parent | 22684273d58b1ae9146fcc6c8dfceb90ddf846d9 (diff) |
xmloff,vbahelper: prefer passing OUString and OString by reference
Change-Id: I8b7e4284c122549c03edaa7f3963cbfb2024b3fc
Diffstat (limited to 'xmloff/inc/XMLLineNumberingImportContext.hxx')
-rw-r--r-- | xmloff/inc/XMLLineNumberingImportContext.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/inc/XMLLineNumberingImportContext.hxx b/xmloff/inc/XMLLineNumberingImportContext.hxx index 5eb2cf4b0e01..ccf26488f565 100644 --- a/xmloff/inc/XMLLineNumberingImportContext.hxx +++ b/xmloff/inc/XMLLineNumberingImportContext.hxx @@ -100,7 +100,7 @@ protected: void ProcessAttribute( enum LineNumberingToken eToken, - OUString sValue); + const OUString& sValue); virtual void CreateAndInsert(sal_Bool bOverwrite); @@ -111,8 +111,8 @@ protected: ::com::sun::star::xml::sax::XAttributeList> & xAttrList ); void ProcessAttribute( - const OUString sLocalName, - const OUString sValue); + const OUString& sLocalName, + const OUString& sValue); }; #endif |