summaryrefslogtreecommitdiff
path: root/sw/qa/extras/inc/swmodeltestbase.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/qa/extras/inc/swmodeltestbase.hxx')
-rw-r--r--sw/qa/extras/inc/swmodeltestbase.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/qa/extras/inc/swmodeltestbase.hxx b/sw/qa/extras/inc/swmodeltestbase.hxx
index 8ae58fe37824..09b3a95a429a 100644
--- a/sw/qa/extras/inc/swmodeltestbase.hxx
+++ b/sw/qa/extras/inc/swmodeltestbase.hxx
@@ -154,7 +154,7 @@ public:
}
SwModelTestBase(const char* pTestDocumentPath = "", const char* pFilter = "")
- : mpXmlBuffer(0)
+ : mpXmlBuffer(nullptr)
, mpTestDocumentPath(pTestDocumentPath)
, mpFilter(pFilter)
, mnStartTime(0)
@@ -297,7 +297,7 @@ private:
// create the xml writer
mpXmlBuffer = xmlBufferCreate();
xmlTextWriterPtr pXmlWriter = xmlNewTextWriterMemory(mpXmlBuffer, 0);
- xmlTextWriterStartDocument(pXmlWriter, NULL, NULL, NULL);
+ xmlTextWriterStartDocument(pXmlWriter, nullptr, nullptr, nullptr);
// create the dump
SwXTextDocument* pTextDoc = dynamic_cast<SwXTextDocument *>(mxComponent.get());
@@ -317,7 +317,7 @@ protected:
if (mpXmlBuffer)
{
xmlBufferFree(mpXmlBuffer);
- mpXmlBuffer = 0;
+ mpXmlBuffer = nullptr;
}
}
@@ -654,7 +654,7 @@ protected:
xmlDocPtr parseExport(const OUString& rStreamName = OUString("word/document.xml"))
{
if (!mbExported)
- return 0;
+ return nullptr;
return parseExportInternal( maTempFile.GetURL(), rStreamName );
}