diff options
author | David Tardon <dtardon@redhat.com> | 2016-06-17 10:27:27 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2016-06-17 10:27:50 +0200 |
commit | 9aa437deffb10ed11e9f1a8d09c8d1dd4615056a (patch) | |
tree | e64138cb2278a1d131243c0139d707b79bec5b60 /sfx2 | |
parent | 3449ceadd9adab9bbed420d0a602b781067640e1 (diff) |
use assert, this time correctly
Change-Id: I845d9a8e49ca3ecbd7052875783519d18596dd52
Diffstat (limited to 'sfx2')
-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 43a3d2b5fe76..a068ab383d8f 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; - assert( *pIds > *(pIds-1) || "pIds unsorted" ); + assert( *pIds > *(pIds-1) ); } // if not enticed to start update timer |