summaryrefslogtreecommitdiff
path: root/svx/source/accessibility/ChildrenManager.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/accessibility/ChildrenManager.cxx')
-rw-r--r--svx/source/accessibility/ChildrenManager.cxx34
1 files changed, 17 insertions, 17 deletions
diff --git a/svx/source/accessibility/ChildrenManager.cxx b/svx/source/accessibility/ChildrenManager.cxx
index 49f193e0f4c4..be9dae16dc8a 100644
--- a/svx/source/accessibility/ChildrenManager.cxx
+++ b/svx/source/accessibility/ChildrenManager.cxx
@@ -33,14 +33,14 @@ ChildrenManager::ChildrenManager (
const css::uno::Reference<drawing::XShapes>& rxShapeList,
const AccessibleShapeTreeInfo& rShapeTreeInfo,
AccessibleContextBase& rContext)
- : mpImpl (NULL)
+ : mpImpl (nullptr)
{
mpImpl = new ChildrenManagerImpl (rxParent, rxShapeList, rShapeTreeInfo, rContext);
- if (mpImpl != NULL)
+ if (mpImpl != nullptr)
mpImpl->Init ();
else
throw uno::RuntimeException(
- "ChildrenManager::ChildrenManager can't create implementation object", NULL);
+ "ChildrenManager::ChildrenManager can't create implementation object", nullptr);
}
@@ -48,7 +48,7 @@ ChildrenManager::ChildrenManager (
ChildrenManager::~ChildrenManager()
{
- if (mpImpl != NULL)
+ if (mpImpl != nullptr)
mpImpl->dispose();
// emtpy
@@ -57,7 +57,7 @@ ChildrenManager::~ChildrenManager()
long ChildrenManager::GetChildCount() const throw ()
{
- assert(mpImpl != NULL);
+ assert(mpImpl != nullptr);
return mpImpl->GetChildCount();
}
@@ -65,14 +65,14 @@ css::uno::Reference<XAccessible> ChildrenManager::GetChild (long nIndex)
throw (css::uno::RuntimeException,
css::lang::IndexOutOfBoundsException)
{
- assert(mpImpl != NULL);
+ assert(mpImpl != nullptr);
return mpImpl->GetChild (nIndex);
}
Reference<XAccessible> ChildrenManager::GetChild (const Reference<drawing::XShape>& xShape)
throw (css::uno::RuntimeException)
{
- assert(mpImpl != NULL);
+ assert(mpImpl != nullptr);
return mpImpl->GetChild (xShape);
}
@@ -80,55 +80,55 @@ css::uno::Reference<css::drawing::XShape> ChildrenManager::GetChildShape(long nI
throw (css::uno::RuntimeException,
css::lang::IndexOutOfBoundsException)
{
- assert(mpImpl != NULL);
+ assert(mpImpl != nullptr);
return mpImpl->GetChildShape(nIndex);
}
void ChildrenManager::Update (bool bCreateNewObjectsOnDemand)
{
- assert(mpImpl != NULL);
+ assert(mpImpl != nullptr);
mpImpl->Update (bCreateNewObjectsOnDemand);
}
void ChildrenManager::SetShapeList (const css::uno::Reference<css::drawing::XShapes>& xShapeList)
{
- assert(mpImpl != NULL);
+ assert(mpImpl != nullptr);
mpImpl->SetShapeList (xShapeList);
}
void ChildrenManager::AddAccessibleShape (css::uno::Reference<css::accessibility::XAccessible> const & shape)
{
- assert(mpImpl != NULL);
+ assert(mpImpl != nullptr);
mpImpl->AddAccessibleShape (shape);
}
void ChildrenManager::ClearAccessibleShapeList()
{
- assert(mpImpl != NULL);
+ assert(mpImpl != nullptr);
mpImpl->ClearAccessibleShapeList ();
}
void ChildrenManager::SetInfo (AccessibleShapeTreeInfo& rShapeTreeInfo)
{
- assert(mpImpl != NULL);
+ assert(mpImpl != nullptr);
mpImpl->SetInfo (rShapeTreeInfo);
}
void ChildrenManager::UpdateSelection()
{
- assert(mpImpl != NULL);
+ assert(mpImpl != nullptr);
mpImpl->UpdateSelection ();
}
bool ChildrenManager::HasFocus()
{
- assert(mpImpl != NULL);
+ assert(mpImpl != nullptr);
return mpImpl->HasFocus ();
}
void ChildrenManager::RemoveFocus()
{
- assert(mpImpl != NULL);
+ assert(mpImpl != nullptr);
mpImpl->RemoveFocus ();
}
@@ -136,7 +136,7 @@ void ChildrenManager::RemoveFocus()
void ChildrenManager::ViewForwarderChanged (ChangeType aChangeType,
const IAccessibleViewForwarder* pViewForwarder)
{
- assert(mpImpl != NULL);
+ assert(mpImpl != nullptr);
mpImpl->ViewForwarderChanged (aChangeType, pViewForwarder);
}