From de29ac09535d814e4be7e1bf0f10beb9f0f847e3 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 10 Nov 2015 10:22:39 +0100 Subject: loplugin:nullptr (automatic rewrite) Change-Id: I765d2a600f9c57da50c85354688e3ae796750d94 --- sc/source/ui/pagedlg/tptable.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sc/source/ui/pagedlg/tptable.cxx') diff --git a/sc/source/ui/pagedlg/tptable.cxx b/sc/source/ui/pagedlg/tptable.cxx index 7f308af58276..f7eddeb31822 100644 --- a/sc/source/ui/pagedlg/tptable.cxx +++ b/sc/source/ui/pagedlg/tptable.cxx @@ -176,7 +176,7 @@ void ScTablePage::Reset( const SfxItemSet* rCoreSet ) sal_uInt16 nPage = GET_USHORT(SID_SCATTR_PAGE_FIRSTPAGENO,*rCoreSet); m_pBtnPageNo->Check( nPage != 0 ); m_pEdPageNo->SetValue( (nPage != 0) ? nPage : 1 ); - PageNoHdl( NULL ); + PageNoHdl( nullptr ); // object representation: m_pBtnCharts->Check( GET_SHOW( SID_SCATTR_PAGE_CHARTS, *rCoreSet ) ); @@ -226,7 +226,7 @@ void ScTablePage::Reset( const SfxItemSet* rCoreSet ) m_pEdScaleAll->SetValue( 100 ); } - PageDirHdl( NULL ); + PageDirHdl( nullptr ); ScaleHdl( *m_pLbScaleMode.get() ); // remember for FillItemSet -- cgit