summaryrefslogtreecommitdiff
path: root/sw/inc/splargs.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/inc/splargs.hxx')
-rw-r--r--sw/inc/splargs.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/splargs.hxx b/sw/inc/splargs.hxx
index f0fc06f3638e..dd1e736fe954 100644
--- a/sw/inc/splargs.hxx
+++ b/sw/inc/splargs.hxx
@@ -77,7 +77,7 @@ struct SwConversionArgs : SwArgsBase
nConvSrcLang( nLang ),
nConvTextLang( LANGUAGE_NONE ),
nConvTargetLang( LANGUAGE_NONE ),
- pTargetFont( NULL ),
+ pTargetFont( nullptr ),
bAllowImplicitChangesForNotConvertibleText( false )
{}
};
@@ -137,7 +137,7 @@ public:
}
const Point *GetCrsrPos() const
{
- return aCrsrPos.X() || aCrsrPos.Y() ? &aCrsrPos : 0;
+ return aCrsrPos.X() || aCrsrPos.Y() ? &aCrsrPos : nullptr;
}
bool IsCheck() const { return bCheck; }
void SetCheck( const bool bNew ) { bCheck = bNew; }