diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-04-06 23:39:50 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-04-06 23:39:50 +0300 |
commit | 0db36919545b437eb154c24512b406ea78be78b7 (patch) | |
tree | c8e9c0116ff83bd95e486f22c23b49c7d48df5f2 /svtools | |
parent | dab78653430200bab325db6348734e570a34fe12 (diff) |
WaE: passing OString by value, rather pass by reference
Change-Id: I41a318b8376ae3e68701ffe6ebc745bdbec62dc8
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/svhtml/HtmlWriter.cxx | 8 | ||||
-rw-r--r-- | svtools/source/svhtml/htmlout.cxx | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/svtools/source/svhtml/HtmlWriter.cxx b/svtools/source/svhtml/HtmlWriter.cxx index e107bee175cb..5accc5de633e 100644 --- a/svtools/source/svhtml/HtmlWriter.cxx +++ b/svtools/source/svhtml/HtmlWriter.cxx @@ -25,7 +25,7 @@ void HtmlWriter::prettyPrint(bool bChoice) mbPrettyPrint = bChoice; } -void HtmlWriter::start(OString aElement) +void HtmlWriter::start(const OString &aElement) { if (mbElementOpen) { @@ -49,7 +49,7 @@ void HtmlWriter::start(OString aElement) mbElementOpen = true; } -void HtmlWriter::single(OString aContent) +void HtmlWriter::single(const OString &aContent) { start(aContent); end(); @@ -94,7 +94,7 @@ void HtmlWriter::end() mbContentWritten = false; } -void HtmlWriter::write(OString aContent) +void HtmlWriter::write(const OString &aContent) { if (mbElementOpen) { @@ -105,7 +105,7 @@ void HtmlWriter::write(OString aContent) mrStream.WriteOString(aContent); } -void HtmlWriter::attribute(OString aAttribute, OString aValue) +void HtmlWriter::attribute(const OString &aAttribute, const OString &aValue) { if (mbElementOpen && !aAttribute.isEmpty() && !aValue.isEmpty()) { diff --git a/svtools/source/svhtml/htmlout.cxx b/svtools/source/svhtml/htmlout.cxx index 1a675cf2f016..72d61c6cab8d 100644 --- a/svtools/source/svhtml/htmlout.cxx +++ b/svtools/source/svhtml/htmlout.cxx @@ -977,7 +977,7 @@ OString HTMLOutFuncs::CreateTableDataOptionsValNum( return aStrTD.makeStringAndClear(); } -void HtmlWriterHelper::applyColor(HtmlWriter& rHtmlWriter, OString aAttributeName, const Color& rColor) +void HtmlWriterHelper::applyColor(HtmlWriter& rHtmlWriter, const OString &aAttributeName, const Color& rColor) { OStringBuffer sBuffer; |