summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-03-16 14:45:08 +0200
committerTor Lillqvist <tml@collabora.com>2016-03-16 14:45:08 +0200
commit6eb7cd38e348e8a9d6498bfc2d41e91725eb34aa (patch)
treee4f31cc36f8ba8359f405affb36c4f557a11f0f3 /xmloff
parenta607782cb6151c92d2e69bfcdf293a1975a6ac18 (diff)
loplugin:defaultparams
Change-Id: I6d973c5402317b99c1d0eed85d4bb1de83d35fe2
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/text/txtflde.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/text/txtflde.cxx b/xmloff/source/text/txtflde.cxx
index 4964024b2369..3ccef24af2d2 100644
--- a/xmloff/source/text/txtflde.cxx
+++ b/xmloff/source/text/txtflde.cxx
@@ -1280,7 +1280,7 @@ void XMLTextFieldExport::ExportFieldHelper(
// adjust value given as integer in minutes
ProcessDateTime(XML_TIME_ADJUST,
GetIntProperty(sPropertyAdjust, rPropSet),
- false, true, true);
+ false, true);
}
ExportElement(XML_TIME, sPresentation);
break;
@@ -1325,7 +1325,7 @@ void XMLTextFieldExport::ExportFieldHelper(
// adjust value given as number of days
ProcessDateTime(XML_DATE_ADJUST,
GetIntProperty(sPropertyAdjust, rPropSet),
- true, true, true);
+ true, true);
}
ExportElement(XML_DATE, sPresentation);
break;
@@ -2669,7 +2669,7 @@ void XMLTextFieldExport::ProcessDateTime(enum XMLTokenEnum eName,
if (!(bIsDuration && (nMinutes==0)))
{
ProcessDateTime(eName, (double)nMinutes / (double)(24*60),
- bIsDate, bIsDuration, true/*bOmitDurationIfZero*/);
+ bIsDate, bIsDuration);
}
}