summaryrefslogtreecommitdiff
path: root/xmloff/source/text/txtsecte.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:29:15 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:32:01 +0100
commit51b45df6bba163dec7ba91c700de695ad517e5dd (patch)
tree566633496f4048112c75edbbe250b0f01d86a8dd /xmloff/source/text/txtsecte.cxx
parent87bae0e188aa3ce3c31d1aa91707c0fad6b81b65 (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: I8690de2cb68dcfedc9f2239ce66cea06fd94bc16
Diffstat (limited to 'xmloff/source/text/txtsecte.cxx')
-rw-r--r--xmloff/source/text/txtsecte.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/text/txtsecte.cxx b/xmloff/source/text/txtsecte.cxx
index ec59681eca21..0cac1350f7b0 100644
--- a/xmloff/source/text/txtsecte.cxx
+++ b/xmloff/source/text/txtsecte.cxx
@@ -186,7 +186,7 @@ void XMLTextParagraphExport::exportListAndSectionChange(
while ((aOldForward != aOldStack.end()) &&
(*aOldForward != *aOld))
{
- if ( !bAutoStyles && (NULL != pRedlineExport) )
+ if ( !bAutoStyles && (nullptr != pRedlineExport) )
pRedlineExport->ExportStartOrEndRedline(*aOldForward,
false);
pSectionExport->ExportSectionEnd(*aOldForward, bAutoStyles);
@@ -194,7 +194,7 @@ void XMLTextParagraphExport::exportListAndSectionChange(
}
if (aOldForward != aOldStack.end())
{
- if ( !bAutoStyles && (NULL != pRedlineExport) )
+ if ( !bAutoStyles && (nullptr != pRedlineExport) )
pRedlineExport->ExportStartOrEndRedline(*aOldForward,
false);
pSectionExport->ExportSectionEnd(*aOldForward, bAutoStyles);
@@ -205,7 +205,7 @@ void XMLTextParagraphExport::exportListAndSectionChange(
// (order: oldest to newest)
while (aNew != aNewStack.rend())
{
- if ( !bAutoStyles && (NULL != pRedlineExport) )
+ if ( !bAutoStyles && (nullptr != pRedlineExport) )
pRedlineExport->ExportStartOrEndRedline(*aNew, true);
pSectionExport->ExportSectionStart(*aNew, bAutoStyles);
++aNew;