summaryrefslogtreecommitdiff
path: root/sw/source/core/text/txtpaint.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/text/txtpaint.hxx')
-rw-r--r--sw/source/core/text/txtpaint.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/text/txtpaint.hxx b/sw/source/core/text/txtpaint.hxx
index 16f883907427..3a791b720224 100644
--- a/sw/source/core/text/txtpaint.hxx
+++ b/sw/source/core/text/txtpaint.hxx
@@ -30,7 +30,7 @@ class SwSaveClip
bool bChg;
protected:
VclPtr<OutputDevice> pOut;
- void _ChgClip( const SwRect &rRect, const SwTextFrm* pFrm,
+ void _ChgClip( const SwRect &rRect, const SwTextFrame* pFrame,
bool bEnlargeRect );
public:
explicit SwSaveClip(OutputDevice* pOutDev)
@@ -41,9 +41,9 @@ public:
}
inline ~SwSaveClip();
- inline void ChgClip( const SwRect &rRect, const SwTextFrm* pFrm = nullptr,
+ inline void ChgClip( const SwRect &rRect, const SwTextFrame* pFrame = nullptr,
bool bEnlargeRect = false)
- { if( pOut ) _ChgClip( rRect, pFrm, bEnlargeRect ); }
+ { if( pOut ) _ChgClip( rRect, pFrame, bEnlargeRect ); }
void Reset();
inline bool IsOn() const { return bOn; }
inline bool IsChg() const { return bChg; }