summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-06-30 09:13:14 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-06-30 09:46:16 +0100
commit4523dd0544d762961435429167e41a0834b60cea (patch)
tree56a642851053dbb73cc8e383ac29411382d6cc8b /toolkit
parent390ec50cbe3e0b8c15db6504b5bdd36dc3f3fb61 (diff)
Called C++ object pointer is null
Change-Id: I88efc4be6ff869ef97a2b398d43f7b7914debfc6
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/awt/vclxaccessiblecomponent.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/awt/vclxaccessiblecomponent.cxx b/toolkit/source/awt/vclxaccessiblecomponent.cxx
index 907f7b4d773c..029285702989 100644
--- a/toolkit/source/awt/vclxaccessiblecomponent.cxx
+++ b/toolkit/source/awt/vclxaccessiblecomponent.cxx
@@ -186,7 +186,7 @@ void VCLXAccessibleComponent::ProcessWindowEvent( const VclWindowEvent& rVclWind
uno::Any aOldValue, aNewValue;
Window* pAccWindow = rVclWindowEvent.GetWindow();
- DBG_ASSERT( pAccWindow, "VCLXAccessibleComponent::ProcessWindowEvent - Window?" );
+ assert(pAccWindow && "VCLXAccessibleComponent::ProcessWindowEvent - Window?");
switch ( rVclWindowEvent.GetId() )
{