summaryrefslogtreecommitdiff
path: root/svx/source/dialog/checklbx.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/dialog/checklbx.cxx')
-rw-r--r--svx/source/dialog/checklbx.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/dialog/checklbx.cxx b/svx/source/dialog/checklbx.cxx
index 95dcb74030db..0faa72feb39e 100644
--- a/svx/source/dialog/checklbx.cxx
+++ b/svx/source/dialog/checklbx.cxx
@@ -66,7 +66,7 @@ void SvxCheckListBox::InsertEntry( const OUString& rStr, sal_uLong nPos,
void* pUserData,
SvLBoxButtonKind eButtonKind )
{
- SvTreeListBox::InsertEntry( rStr, NULL, false, nPos, pUserData,
+ SvTreeListBox::InsertEntry( rStr, nullptr, false, nPos, pUserData,
eButtonKind );
}
@@ -147,7 +147,7 @@ bool SvxCheckListBox::IsChecked( sal_uLong nPos ) const
void* SvxCheckListBox::SetEntryData ( sal_uLong nPos, void* pNewData )
{
- void* pOld = NULL;
+ void* pOld = nullptr;
if ( nPos < GetEntryCount() )
{
@@ -164,7 +164,7 @@ void* SvxCheckListBox::GetEntryData( sal_uLong nPos ) const
if ( nPos < GetEntryCount() )
return GetEntry( nPos )->GetUserData();
else
- return NULL;
+ return nullptr;
}