summaryrefslogtreecommitdiff
path: root/sax
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-11 08:42:08 +0200
committerNoel Grandin <noel@peralex.com>2015-08-11 09:48:17 +0200
commitc85cda1eb461d1b27b49ad746e2b2299908b9e75 (patch)
tree1df53d37d1107029ef6a0761d302afb6d4f58abb /sax
parentf1639b21507c04a4dfe152776224370eef7088df (diff)
loplugin: defaultparams
Change-Id: I5afe7f9f5caa1f5e55c6218bdb3771571ff0dafa
Diffstat (limited to 'sax')
-rw-r--r--sax/source/tools/converter.cxx2
-rw-r--r--sax/source/tools/fshelper.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sax/source/tools/converter.cxx b/sax/source/tools/converter.cxx
index 835ba489a6c6..d7adda18df2b 100644
--- a/sax/source/tools/converter.cxx
+++ b/sax/source/tools/converter.cxx
@@ -1236,7 +1236,7 @@ void Converter::convertDate(
{
const util::DateTime dt(0, 0, 0, 0,
i_rDate.Day, i_rDate.Month, i_rDate.Year, false);
- convertDateTime(i_rBuffer, dt, pTimeZoneOffset, false);
+ convertDateTime(i_rBuffer, dt, pTimeZoneOffset);
}
static void convertTime(
diff --git a/sax/source/tools/fshelper.cxx b/sax/source/tools/fshelper.cxx
index 75a6fa052d32..1ba11cc40811 100644
--- a/sax/source/tools/fshelper.cxx
+++ b/sax/source/tools/fshelper.cxx
@@ -101,7 +101,7 @@ void FastSerializerHelper::singleElement(sal_Int32 elementTokenId, XFastAttribut
FastSerializerHelper* FastSerializerHelper::write(const char* value)
{
- mpSerializer->write(value, -1, false);
+ mpSerializer->write(value, -1);
return this;
}