summaryrefslogtreecommitdiff
path: root/sw/source/core/access/textmarkuphelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/access/textmarkuphelper.cxx')
-rw-r--r--sw/source/core/access/textmarkuphelper.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/core/access/textmarkuphelper.cxx b/sw/source/core/access/textmarkuphelper.cxx
index 750be3b52341..5f7ae087243b 100644
--- a/sw/source/core/access/textmarkuphelper.cxx
+++ b/sw/source/core/access/textmarkuphelper.cxx
@@ -38,7 +38,7 @@ namespace {
throw (css::lang::IllegalArgumentException,
css::uno::RuntimeException)
{
- const SwWrongList* pTextMarkupList( 0 );
+ const SwWrongList* pTextMarkupList( nullptr );
switch ( nTextMarkupType )
{
case text::TextMarkupType::SPELLCHECK:
@@ -49,13 +49,13 @@ namespace {
case text::TextMarkupType::PROOFREADING:
{
// support not implemented yet
- pTextMarkupList = 0;
+ pTextMarkupList = nullptr;
}
break;
case text::TextMarkupType::SMARTTAG:
{
// support not implemented yet
- pTextMarkupList = 0;
+ pTextMarkupList = nullptr;
}
break;
default:
@@ -74,7 +74,7 @@ SwTextMarkupHelper::SwTextMarkupHelper( const SwAccessiblePortionData& rPortionD
: mrPortionData( rPortionData )
// #i108125#
, mpTextNode( &rTextNode )
- , mpTextMarkupList( 0 )
+ , mpTextMarkupList( nullptr )
{
}
@@ -82,7 +82,7 @@ SwTextMarkupHelper::SwTextMarkupHelper( const SwAccessiblePortionData& rPortionD
SwTextMarkupHelper::SwTextMarkupHelper( const SwAccessiblePortionData& rPortionData,
const SwWrongList& rTextMarkupList )
: mrPortionData( rPortionData )
- , mpTextNode( 0 )
+ , mpTextNode( nullptr )
, mpTextMarkupList( &rTextMarkupList )
{
}