diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-09-26 11:17:32 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-09-26 11:18:02 +0200 |
commit | 51dcb469c013d3a8a301ca8e86dde3a420b5417f (patch) | |
tree | 79a0364432fc478a1a53aa9a576bd0c0f88eab77 /sd | |
parent | f7eef8087a91628eed17b71e7b2cc71add03d932 (diff) |
Fixed DBG_ASSERT broken by recent commit.
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/dlg/tpaction.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/dlg/tpaction.cxx b/sd/source/ui/dlg/tpaction.cxx index 0e64d8940d6f..25eeafd3ad9f 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 { |