[Libreoffice-commits] core.git: sfx2/source
David Tardon
dtardon at redhat.com
Fri Jun 17 08:25:09 UTC 2016
sfx2/source/control/bindings.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 2a5f6ad9b926cac23e4a1c128681a8e8d9c75d86
Author: David Tardon <dtardon at redhat.com>
Date: Thu Jun 16 16:44:55 2016 +0200
use assert
Change-Id: I12113ddefbba9120427aeed6d1246ff12c92188a
diff --git a/sfx2/source/control/bindings.cxx b/sfx2/source/control/bindings.cxx
index cfc899f..43a3d2b 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
More information about the Libreoffice-commits
mailing list