diff options
Diffstat (limited to 'sw/inc/ddefld.hxx')
-rw-r--r-- | sw/inc/ddefld.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/ddefld.hxx b/sw/inc/ddefld.hxx index 953f0ee6af06..7f26d2dd836c 100644 --- a/sw/inc/ddefld.hxx +++ b/sw/inc/ddefld.hxx @@ -38,7 +38,7 @@ class SW_DLLPUBLIC SwDDEFieldType : public SwFieldType bool bCRLFFlag : 1; bool bDeleted : 1; - SAL_DLLPRIVATE void _RefCntChgd(); + SAL_DLLPRIVATE void RefCntChgd(); public: SwDDEFieldType( const OUString& rName, const OUString& rCmd, @@ -74,8 +74,8 @@ public: SwDoc* GetDoc() { return pDoc; } void SetDoc( SwDoc* pDoc ); - void IncRefCnt() { if( !nRefCnt++ && pDoc ) _RefCntChgd(); } - void DecRefCnt() { if( !--nRefCnt && pDoc ) _RefCntChgd(); } + void IncRefCnt() { if( !nRefCnt++ && pDoc ) RefCntChgd(); } + void DecRefCnt() { if( !--nRefCnt && pDoc ) RefCntChgd(); } void SetCRLFDelFlag( bool bFlag = true ) { bCRLFFlag = bFlag; } }; |