summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-07-06 20:30:54 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-07-06 21:06:06 +0100
commiteb9b890bc95005c4d97622630786359d1b821cb5 (patch)
tree0c9db00aa08eb0310f0203eb68dcdb2b9b698ffc /include
parent82a30a456e08a27267c35c3df0c6ecd8b9079611 (diff)
DBG_ASSERT->assert when followed by dereference
Change-Id: I9390228721df1b713d8cf2e719854b74d6b639c8
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/shell.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/shell.hxx b/include/sfx2/shell.hxx
index 7047e4dccf46..7d877d8a567f 100644
--- a/include/sfx2/shell.hxx
+++ b/include/sfx2/shell.hxx
@@ -273,7 +273,7 @@ SfxItemPool& SfxShell::GetPool() const
*/
{
- DBG_ASSERT( pPool, "no pool" );
+ assert(pPool && "no pool");
return *pPool;
}