From 150fdfc77274909dd9281b97c1e166cac838c60e Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Fri, 30 Oct 2015 08:32:48 +0100 Subject: sw: prefix members of SwNode Change-Id: I3ce33c8ea0c09948785621785d199ece6eda128a --- sw/inc/ndole.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sw/inc/ndole.hxx') 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(this) : 0; + return ND_OLENODE == m_nNodeType ? static_cast(this) : 0; } inline const SwOLENode *SwNode::GetOLENode() const { - return ND_OLENODE == nNodeType ? static_cast(this) : 0; + return ND_OLENODE == m_nNodeType ? static_cast(this) : 0; } #endif // _ INCLUDED_SW_INC_NDOLE_HXX -- cgit