summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/rootfrm.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:25:48 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:53 +0100
commit01b49802c7cda7fd4d5ba71263cef7bc95234b89 (patch)
treeb8d92f1c6abf5ac548d0bcb0c581ebfcffd8bfac /sw/source/core/inc/rootfrm.hxx
parent6cd7bf2043146a630925a2e49336f02c802f707a (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: I01e11fa956a249974e77dce9deebe79311f098d0
Diffstat (limited to 'sw/source/core/inc/rootfrm.hxx')
-rw-r--r--sw/source/core/inc/rootfrm.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/source/core/inc/rootfrm.hxx b/sw/source/core/inc/rootfrm.hxx
index 30fb92d92932..562fff67be59 100644
--- a/sw/source/core/inc/rootfrm.hxx
+++ b/sw/source/core/inc/rootfrm.hxx
@@ -197,15 +197,15 @@ public:
void SetDrawPage( SdrPage* pNew ){ mpDrawPage = pNew; }
virtual bool GetCrsrOfst( SwPosition *, Point&,
- SwCrsrMoveState* = 0, bool bTestBackground = false ) const override;
+ SwCrsrMoveState* = nullptr, bool bTestBackground = false ) const override;
virtual void Paint( vcl::RenderContext& rRenderContext, SwRect const&,
- SwPrintData const*const pPrintData = NULL ) const override;
+ SwPrintData const*const pPrintData = nullptr ) const override;
virtual SwTwips ShrinkFrm( SwTwips, bool bTst = false, bool bInfo = false ) override;
virtual SwTwips GrowFrm ( SwTwips, bool bTst = false, bool bInfo = false ) override;
#ifdef DBG_UTIL
virtual void Cut() override;
- virtual void Paste( SwFrm* pParent, SwFrm* pSibling = 0 ) override;
+ virtual void Paste( SwFrm* pParent, SwFrm* pSibling = nullptr ) override;
#endif
virtual bool FillSelection( SwSelectionList& rList, const SwRect& rRect ) const override;
@@ -221,7 +221,7 @@ public:
SwViewShell* pCurrShell = GetCurrShell();
// May be NULL if called from SfxBaseModel::dispose
// (this happens in the build test 'rtfexport').
- if (pCurrShell != NULL)
+ if (pCurrShell != nullptr)
pCurrShell->GetDoc()->getIDocumentTimerAccess().StartBackgroundJobs();
}
bool IsIdleFormat() const { return mbIdleFormat; }
@@ -237,7 +237,7 @@ public:
SwViewShell* pCurrShell = GetCurrShell();
// May be NULL if called from SfxBaseModel::dispose
// (this happens in the build test 'rtfexport').
- if (pCurrShell != NULL)
+ if (pCurrShell != nullptr)
pCurrShell->GetDoc()->getIDocumentTimerAccess().StartBackgroundJobs();
}
}
@@ -289,7 +289,7 @@ public:
* bool bExtend: Extend each page to the left/right/top/botton up to the
* next page margin
*/
- const SwPageFrm* GetPageAtPos( const Point& rPt, const Size* pSize = 0, bool bExtend = false ) const;
+ const SwPageFrm* GetPageAtPos( const Point& rPt, const Size* pSize = nullptr, bool bExtend = false ) const;
/**
* Point rPt: The point to test
@@ -314,14 +314,14 @@ public:
void ResetTurboFlag() const { const_cast<SwRootFrm*>(this)->mbTurboAllowed = true; }
bool IsTurboAllowed() const { return mbTurboAllowed; }
void SetTurbo( const SwContentFrm *pContent ) { mpTurbo = pContent; }
- void ResetTurbo() { mpTurbo = 0; }
+ void ResetTurbo() { mpTurbo = nullptr; }
const SwContentFrm *GetTurbo() { return mpTurbo; }
/// Update the footernumbers of all Pages
void UpdateFootnoteNums(); // Only for page by page numnbering!
/// Remove all footnotes (but no references)
- void RemoveFootnotes( SwPageFrm *pPage = 0, bool bPageOnly = false,
+ void RemoveFootnotes( SwPageFrm *pPage = nullptr, bool bPageOnly = false,
bool bEndNotes = false );
void CheckFootnotePageDescs( bool bEndNote );