[Libreoffice-commits] .: sc/source
Kohei Yoshida
kohei at kemper.freedesktop.org
Mon Jun 13 21:16:36 PDT 2011
sc/source/core/data/bcaslot.cxx | 1 -
1 file changed, 1 deletion(-)
New commits:
commit 309728d76562b86c05b79cdce37b904d0a25720c
Author: Kohei Yoshida <kyoshida at novell.com>
Date: Tue Jun 14 00:15:31 2011 -0400
This assertion fails many times & is very noisy.
The fact that there is a if statement to check for the NULL pointer
suggests that the pointer can be NULL sometimes. Let's remove this
OSL_ENSURE.
diff --git a/sc/source/core/data/bcaslot.cxx b/sc/source/core/data/bcaslot.cxx
index 0cb9422..9cfb327 100644
--- a/sc/source/core/data/bcaslot.cxx
+++ b/sc/source/core/data/bcaslot.cxx
@@ -590,7 +590,6 @@ void ScBroadcastAreaSlotMachine::EndListeningArea( const ScRange& rRange,
{
if ( rRange == BCA_LISTEN_ALWAYS )
{
- OSL_ENSURE( pBCAlways, "ScBroadcastAreaSlotMachine::EndListeningArea: BCA_LISTEN_ALWAYS but none established");
if ( pBCAlways )
{
pListener->EndListening( *pBCAlways);
More information about the Libreoffice-commits
mailing list