summaryrefslogtreecommitdiffstats
path: root/accessibility/source/standard/vclxaccessiblelist.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:09:45 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:15 +0100
commit3fbe1c814da59a4ed722ee5777bec0c59eb57a25 (patch)
tree3dc31c1b7bc08976df85aec9339f97082b47b8c0 /accessibility/source/standard/vclxaccessiblelist.cxx
parentloplugin:nullptr (automatic rewrite) (diff)
downloadcore-3fbe1c814da59a4ed722ee5777bec0c59eb57a25.tar.gz
core-3fbe1c814da59a4ed722ee5777bec0c59eb57a25.zip
loplugin:nullptr (automatic rewrite)
Change-Id: I5e94b084c923fa5d9c925630669cf698b34f34ff
Diffstat (limited to 'accessibility/source/standard/vclxaccessiblelist.cxx')
-rw-r--r--accessibility/source/standard/vclxaccessiblelist.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/accessibility/source/standard/vclxaccessiblelist.cxx b/accessibility/source/standard/vclxaccessiblelist.cxx
index dd4ac1af09e2..54736a58f6e2 100644
--- a/accessibility/source/standard/vclxaccessiblelist.cxx
+++ b/accessibility/source/standard/vclxaccessiblelist.cxx
@@ -55,7 +55,7 @@ VCLXAccessibleList::VCLXAccessibleList (VCLXWindow* pVCLWindow, BoxType aBoxType
const Reference< XAccessible >& _xParent)
: VCLXAccessibleComponent (pVCLWindow),
m_aBoxType (aBoxType),
- m_pListBoxHelper (0),
+ m_pListBoxHelper (nullptr),
m_nVisibleLineCount (0),
m_nIndexInParent (DEFAULT_INDEX_IN_PARENT),
m_nLastTopEntry ( 0 ),
@@ -116,7 +116,7 @@ void SAL_CALL VCLXAccessibleList::disposing()
clearItems();
delete m_pListBoxHelper;
- m_pListBoxHelper = NULL;
+ m_pListBoxHelper = nullptr;
}
@@ -879,7 +879,7 @@ Reference< XAccessible > SAL_CALL VCLXAccessibleList::getSelectedAccessibleChild
return getAccessibleChild( (sal_Int32)m_pListBoxHelper->GetSelectEntryPos( (sal_uInt16)nSelectedChildIndex ) );
}
- return NULL;
+ return nullptr;
}
void SAL_CALL VCLXAccessibleList::deselectAccessibleChild( sal_Int32 nSelectedChildIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)