[Libreoffice-commits] .: sd/source
Stephan Bergmann
sbergmann at kemper.freedesktop.org
Mon Sep 26 02:18:21 PDT 2011
sd/source/ui/dlg/tpaction.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 51dcb469c013d3a8a301ca8e86dde3a420b5417f
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Mon Sep 26 11:17:32 2011 +0200
Fixed DBG_ASSERT broken by recent commit.
diff --git a/sd/source/ui/dlg/tpaction.cxx b/sd/source/ui/dlg/tpaction.cxx
index 0e64d89..25eeafd 100644
--- a/sd/source/ui/dlg/tpaction.cxx
+++ b/sd/source/ui/dlg/tpaction.cxx
@@ -189,7 +189,7 @@ void SdTPAction::SetView( const ::sd::View* pSdView )
SvxColorListItem aItem( *(const SvxColorListItem*)( pDocSh->GetItem( SID_COLOR_TABLE ) ) );
pColList = aItem.GetColorList();
- DBG_ASSERT( pColList, "Keine Farbtabelle vorhanden!" );
+ DBG_ASSERT( pColList.is(), "Keine Farbtabelle vorhanden!" );
}
else
{
More information about the Libreoffice-commits
mailing list