summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/UndoSplitMove.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/inc/UndoSplitMove.hxx')
-rw-r--r--sw/source/core/inc/UndoSplitMove.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/sw/source/core/inc/UndoSplitMove.hxx b/sw/source/core/inc/UndoSplitMove.hxx
index de22f9e62aa3..9119248bb5f5 100644
--- a/sw/source/core/inc/UndoSplitMove.hxx
+++ b/sw/source/core/inc/UndoSplitMove.hxx
@@ -49,16 +49,16 @@ class SwUndoMove : public SwUndo, private SwUndRng, private SwUndoSaveContent
// nDest.. - destination range of move (after move!)
// nIns.. - source Position of move (after move!)
// nMv.. - destination position of move (before move!); for REDO
- sal_uLong nDestSttNode, nDestEndNode, nInsPosNode, nMvDestNode;
- sal_Int32 nDestSttContent, nDestEndContent, nInsPosContent, nMvDestContent;
+ sal_uLong m_nDestStartNode, m_nDestEndNode, m_nInsPosNode, m_nMoveDestNode;
+ sal_Int32 m_nDestStartContent, m_nDestEndContent, m_nInsPosContent, m_nMoveDestContent;
- sal_uInt16 nFootnoteStt; // StartPos of Footnotes in History
+ sal_uInt16 m_nFootnoteStart; // StartPos of Footnotes in History
- bool bJoinNext : 1,
- bJoinPrev : 1,
- bMoveRange : 1;
+ bool m_bJoinNext : 1,
+ m_bJoinPrev : 1,
+ m_bMoveRange : 1;
- bool bMoveRedlines; // use DOC_MOVEREDLINES when calling SwDoc::Move
+ bool m_bMoveRedlines; // use DOC_MOVEREDLINES when calling SwDoc::Move
void DelFootnote( const SwPaM& );
@@ -74,12 +74,12 @@ public:
void SetDestRange( const SwNodeIndex& rStt, const SwNodeIndex& rEnd,
const SwNodeIndex& rInsPos );
- bool IsMoveRange() const { return bMoveRange; }
+ bool IsMoveRange() const { return m_bMoveRange; }
sal_uLong GetEndNode() const { return nEndNode; }
- sal_uLong GetDestSttNode() const { return nDestSttNode; }
- sal_Int32 GetDestSttContent() const { return nDestSttContent; }
+ sal_uLong GetDestSttNode() const { return m_nDestStartNode; }
+ sal_Int32 GetDestSttContent() const { return m_nDestStartContent; }
- void SetMoveRedlines( bool b ) { bMoveRedlines = b; }
+ void SetMoveRedlines( bool b ) { m_bMoveRedlines = b; }
};
#endif // INCLUDED_SW_SOURCE_CORE_INC_UNDOSPLITMOVE_HXX