summaryrefslogtreecommitdiff
path: root/forms/source/richtext/rtattributes.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:15:45 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:26 +0100
commit11d365241808405483b79efd7879fa04bee8945e (patch)
treefae079e798f502f1766fa11a9db0b75fd5c44533 /forms/source/richtext/rtattributes.hxx
parent3cdda9af2c12a9ae2a1f0bdf8ca898f1f5c69bfb (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: Ic67c3138ca66c6b6d6fcf76b09d4581e23f51f8d
Diffstat (limited to 'forms/source/richtext/rtattributes.hxx')
-rw-r--r--forms/source/richtext/rtattributes.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/forms/source/richtext/rtattributes.hxx b/forms/source/richtext/rtattributes.hxx
index f8d4f7a98229..5e61f55dbffa 100644
--- a/forms/source/richtext/rtattributes.hxx
+++ b/forms/source/richtext/rtattributes.hxx
@@ -62,19 +62,19 @@ namespace frm
};
inline AttributeState::AttributeState( )
- :pItemHandleItem ( NULL )
+ :pItemHandleItem ( nullptr )
,eSimpleState( eIndetermined )
{
}
inline AttributeState::AttributeState( AttributeCheckState _eCheckState )
- :pItemHandleItem ( NULL )
+ :pItemHandleItem ( nullptr )
,eSimpleState( _eCheckState )
{
}
inline AttributeState::AttributeState( const AttributeState& _rSource )
- :pItemHandleItem ( NULL )
+ :pItemHandleItem ( nullptr )
,eSimpleState( eIndetermined )
{
operator=( _rSource );
@@ -107,7 +107,7 @@ namespace frm
if ( _pItem )
pItemHandleItem = _pItem->Clone();
else
- pItemHandleItem = NULL;
+ pItemHandleItem = nullptr;
}
inline bool AttributeState::operator==( const AttributeState& _rRHS )