summaryrefslogtreecommitdiff
path: root/sw/inc/ndgrf.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-10-30 08:32:48 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-10-30 08:32:48 +0100
commit150fdfc77274909dd9281b97c1e166cac838c60e (patch)
tree04b885937f89e8e0c8612adeb4a473d7b41dd620 /sw/inc/ndgrf.hxx
parentbd0ec1e68dcbc344cbaa50e35608bab95925fcaf (diff)
sw: prefix members of SwNode
Change-Id: I3ce33c8ea0c09948785621785d199ece6eda128a
Diffstat (limited to 'sw/inc/ndgrf.hxx')
-rw-r--r--sw/inc/ndgrf.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/ndgrf.hxx b/sw/inc/ndgrf.hxx
index ffaa0f9f28be..3fed0de26d11 100644
--- a/sw/inc/ndgrf.hxx
+++ b/sw/inc/ndgrf.hxx
@@ -205,12 +205,12 @@ public:
// Inline methods from Node.hxx - it is only now that we know TextNode!!
inline SwGrfNode *SwNode::GetGrfNode()
{
- return ND_GRFNODE == nNodeType ? static_cast<SwGrfNode*>(this) : 0;
+ return ND_GRFNODE == m_nNodeType ? static_cast<SwGrfNode*>(this) : 0;
}
inline const SwGrfNode *SwNode::GetGrfNode() const
{
- return ND_GRFNODE == nNodeType ? static_cast<const SwGrfNode*>(this) : 0;
+ return ND_GRFNODE == m_nNodeType ? static_cast<const SwGrfNode*>(this) : 0;
}
inline bool SwGrfNode::IsLinkedFile() const