summaryrefslogtreecommitdiff
path: root/forms/source/richtext/rtattributes.hxx
diff options
context:
space:
mode:
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 )