summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/rtfstringbuffer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/ww8/rtfstringbuffer.cxx')
-rw-r--r--sw/source/filter/ww8/rtfstringbuffer.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/ww8/rtfstringbuffer.cxx b/sw/source/filter/ww8/rtfstringbuffer.cxx
index 44f0340b38c4..55c4d68a2653 100644
--- a/sw/source/filter/ww8/rtfstringbuffer.cxx
+++ b/sw/source/filter/ww8/rtfstringbuffer.cxx
@@ -11,8 +11,8 @@
RtfStringBufferValue::RtfStringBufferValue()
: m_aBuffer(),
- m_pFlyFrameFormat(0),
- m_pGrfNode(0)
+ m_pFlyFrameFormat(nullptr),
+ m_pGrfNode(nullptr)
{
}
@@ -38,7 +38,7 @@ OString RtfStringBufferValue::makeStringAndClear()
bool RtfStringBufferValue::isGraphic() const
{
- return m_pFlyFrameFormat != 0 && m_pGrfNode != 0;
+ return m_pFlyFrameFormat != nullptr && m_pGrfNode != nullptr;
}
RtfStringBuffer::RtfStringBuffer()