diff options
author | Michael Meeks <michael.meeks@novell.com> | 2011-09-24 11:33:38 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@novell.com> | 2011-09-24 11:35:23 +0100 |
commit | 24bd2b363a8e9981a3583dfb190161ab335ee870 (patch) | |
tree | 35b030a3110abf887ad60a6f1b642299be7aa855 /svx | |
parent | eb2d27548d6db23630032f15985da980c6d53303 (diff) |
cleanup debug build pointer -> ref migration issues
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/tbxctrls/linectrl.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/svx/source/tbxctrls/linectrl.cxx b/svx/source/tbxctrls/linectrl.cxx index 2d419d246e70..fe54d1abb532 100644 --- a/svx/source/tbxctrls/linectrl.cxx +++ b/svx/source/tbxctrls/linectrl.cxx @@ -382,7 +382,6 @@ SvxLineEndWindow::SvxLineEndWindow( SfxPopupWindow( nSlotId, rFrame, WinBits( WB_STDPOPUP ) ), - pLineEndList (), aLineEndSet ( this, WinBits( WB_ITEMBORDER | WB_3DLOOK | WB_NO_DIRECTSELECT ) ), nCols ( 2 ), nLines ( 12 ), @@ -404,7 +403,6 @@ SvxLineEndWindow::SvxLineEndWindow( rFrame, pParentWindow, WinBits( WB_STDPOPUP ) ), - pLineEndList ( NULL ), aLineEndSet ( this, WinBits( WB_ITEMBORDER | WB_3DLOOK | WB_NO_DIRECTSELECT ) ), nCols ( 2 ), nLines ( 12 ), @@ -435,7 +433,7 @@ void SvxLineEndWindow::implInit() if( pItem ) nLineEndWidth = ( (SfxUInt16Item*) pItem )->GetValue(); } - DBG_ASSERT( pLineEndList, "LineEndList wurde nicht gefunden" ); + DBG_ASSERT( pLineEndList.is(), "LineEndList wurde nicht gefunden" ); aLineEndSet.SetSelectHdl( LINK( this, SvxLineEndWindow, SelectHdl ) ); aLineEndSet.SetColCount( nCols ); @@ -669,7 +667,7 @@ void SvxLineEndWindow::StateChanged( if ( pState && pState->ISA( SvxLineEndListItem )) { pLineEndList = ((SvxLineEndListItem*)pState)->GetLineEndList(); - DBG_ASSERT( pLineEndList, "LineEndList nicht gefunden" ); + DBG_ASSERT( pLineEndList.is(), "LineEndList nicht gefunden" ); aLineEndSet.Clear(); FillValueSet(); |