summaryrefslogtreecommitdiff
path: root/accessibility/source/extended/accessiblelistboxentry.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'accessibility/source/extended/accessiblelistboxentry.cxx')
-rw-r--r--accessibility/source/extended/accessiblelistboxentry.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/accessibility/source/extended/accessiblelistboxentry.cxx b/accessibility/source/extended/accessiblelistboxentry.cxx
index 073d38fc8e05..f49fc0e3a761 100644
--- a/accessibility/source/extended/accessiblelistboxentry.cxx
+++ b/accessibility/source/extended/accessiblelistboxentry.cxx
@@ -135,7 +135,7 @@ namespace accessibility
{
aRect = getListBox()->GetBoundingRect( pEntry );
Point aTopLeft = aRect.TopLeft();
- aTopLeft += getListBox()->GetWindowExtentsRelative( NULL ).TopLeft();
+ aTopLeft += getListBox()->GetWindowExtentsRelative( nullptr ).TopLeft();
aRect = Rectangle( aTopLeft, aRect.GetSize() );
}
@@ -351,7 +351,7 @@ namespace accessibility
if ( pParentEntry )
pParentEntry = getListBox()->GetParent(pParentEntry);
if ( pParentEntry )
- xParent = new AccessibleListBoxEntry( *getListBox(), pParentEntry, NULL );
+ xParent = new AccessibleListBoxEntry( *getListBox(), pParentEntry, nullptr );
// note that we pass NULL here as parent-accessible:
// this is allowed, as the AccessibleListBoxEntry class will create its parent
// when needed
@@ -1201,7 +1201,7 @@ namespace accessibility
SvTreeListEntry* AccessibleListBoxEntry::GetRealChild(sal_Int32 nIndex)
{
- SvTreeListEntry* pEntry = NULL;
+ SvTreeListEntry* pEntry = nullptr;
SvTreeListEntry* pParent = getListBox()->GetEntryFromPath( m_aEntryPath );
if (pParent)
{