summaryrefslogtreecommitdiff
path: root/sw/inc/ndole.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/ndole.hxx
parentbd0ec1e68dcbc344cbaa50e35608bab95925fcaf (diff)
sw: prefix members of SwNode
Change-Id: I3ce33c8ea0c09948785621785d199ece6eda128a
Diffstat (limited to 'sw/inc/ndole.hxx')
-rw-r--r--sw/inc/ndole.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/ndole.hxx b/sw/inc/ndole.hxx
index 0d5451e24327..ce1870104158 100644
--- a/sw/inc/ndole.hxx
+++ b/sw/inc/ndole.hxx
@@ -140,12 +140,12 @@ public:
/// Inline methods from Node.hxx
inline SwOLENode *SwNode::GetOLENode()
{
- return ND_OLENODE == nNodeType ? static_cast<SwOLENode*>(this) : 0;
+ return ND_OLENODE == m_nNodeType ? static_cast<SwOLENode*>(this) : 0;
}
inline const SwOLENode *SwNode::GetOLENode() const
{
- return ND_OLENODE == nNodeType ? static_cast<const SwOLENode*>(this) : 0;
+ return ND_OLENODE == m_nNodeType ? static_cast<const SwOLENode*>(this) : 0;
}
#endif // _ INCLUDED_SW_INC_NDOLE_HXX