summaryrefslogtreecommitdiff
path: root/sw/inc/undobj.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2019-09-09 08:02:34 +0200
committerMiklos Vajna <vmiklos@collabora.com>2019-09-09 08:46:17 +0200
commit9670abc43051e1f7a3f2ed9369ca9a3748aa7a2b (patch)
tree69126ca2aae2e55b2bb95290e558f85b2f08262e /sw/inc/undobj.hxx
parentf76dbe5dc581845996a8bd5f5109c5e2ff5a27b0 (diff)
sw: prefix members of SwUndoInserts
See tdf#94879 for motivation. Change-Id: I2f61a2e9de678d19dd5640865a3b4d4263c90496 Reviewed-on: https://gerrit.libreoffice.org/78769 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/inc/undobj.hxx')
-rw-r--r--sw/inc/undobj.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/inc/undobj.hxx b/sw/inc/undobj.hxx
index 4dd37caf7a88..b9f058be2793 100644
--- a/sw/inc/undobj.hxx
+++ b/sw/inc/undobj.hxx
@@ -239,16 +239,16 @@ GetFlysAnchoredAt(SwDoc & rDoc, sal_uLong nSttNode);
// base class for insertion of Document, Glossaries and Copy
class SwUndoInserts : public SwUndo, public SwUndRng, private SwUndoSaveContent
{
- SwTextFormatColl *pTextFormatColl, *pLastNdColl;
- std::unique_ptr<std::vector<SwFrameFormat*>> pFrameFormats;
+ SwTextFormatColl *m_pTextFormatColl, *m_pLastNodeColl;
+ std::unique_ptr<std::vector<SwFrameFormat*>> m_pFrameFormats;
std::vector< std::shared_ptr<SwUndoInsLayFormat> > m_FlyUndos;
- std::unique_ptr<SwRedlineData> pRedlData;
- bool bSttWasTextNd;
+ std::unique_ptr<SwRedlineData> m_pRedlineData;
+ bool m_bStartWasTextNode;
protected:
- sal_uLong nNdDiff;
+ sal_uLong m_nNodeDiff;
/// start of Content in UndoNodes for Redo
std::unique_ptr<SwNodeIndex> m_pUndoNodeIndex;
- sal_uInt16 nSetPos; // Start in the history list.
+ sal_uInt16 m_nSetPos; // Start in the history list.
SwUndoInserts( SwUndoId nUndoId, const SwPaM& );
public:
@@ -264,7 +264,7 @@ public:
static bool IsCreateUndoForNewFly(SwFormatAnchor const& rAnchor,
sal_uLong const nStartNode, sal_uLong const nEndNode);
- std::vector<SwFrameFormat*> * GetFlysAnchoredAt() { return pFrameFormats.get(); }
+ std::vector<SwFrameFormat*> * GetFlysAnchoredAt() { return m_pFrameFormats.get(); }
};
class SwUndoInsDoc : public SwUndoInserts