diff options
author | David Tardon <dtardon@redhat.com> | 2016-06-16 16:44:55 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2016-06-17 10:24:31 +0200 |
commit | 2a5f6ad9b926cac23e4a1c128681a8e8d9c75d86 (patch) | |
tree | ecddddaddd9fd2c23d37c571cf5e1211fb0d677d /sfx2/source/control/bindings.cxx | |
parent | d6665da4eae15cf21eecaf048d1c9eb7381b3b99 (diff) |
use assert
Change-Id: I12113ddefbba9120427aeed6d1246ff12c92188a
Diffstat (limited to 'sfx2/source/control/bindings.cxx')
-rw-r--r-- | sfx2/source/control/bindings.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/control/bindings.cxx b/sfx2/source/control/bindings.cxx index cfc899f03dd8..43a3d2b5fe76 100644 --- a/sfx2/source/control/bindings.cxx +++ b/sfx2/source/control/bindings.cxx @@ -648,7 +648,7 @@ void SfxBindings::Invalidate // Next SID if ( !*++pIds ) break; - DBG_ASSERT( *pIds > *(pIds-1), "pIds unsorted" ); + assert( *pIds > *(pIds-1) || "pIds unsorted" ); } // if not enticed to start update timer |