summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2017-08-15 08:18:29 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-08-15 09:21:08 +0200
commitec630a00212c90d5a6e57264dd3fb9c3f31a1f53 (patch)
tree5e36a6164fe885fb75dd5a8bc95a140bbbc4bcf9 /sw/inc
parent7172a7e4a64a67d43d16c2fbdbe9015fb5bf5a0c (diff)
sw: prefix members of SwOLENode
Change-Id: I2b79ae40afad8c392f219f1798ce44b41649e5b9 Reviewed-on: https://gerrit.libreoffice.org/41163 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/ndole.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sw/inc/ndole.hxx b/sw/inc/ndole.hxx
index bdab642ebb70..99a92287b635 100644
--- a/sw/inc/ndole.hxx
+++ b/sw/inc/ndole.hxx
@@ -82,9 +82,9 @@ public:
class SW_DLLPUBLIC SwOLENode: public SwNoTextNode
{
friend class SwNodes;
- mutable SwOLEObj aOLEObj;
- OUString sChartTableName; ///< with chart objects: name of referenced table.
- bool bOLESizeInvalid; /**< Should be considered at SwDoc::PrtOLENotify
+ mutable SwOLEObj maOLEObj;
+ OUString msChartTableName; ///< with chart objects: name of referenced table.
+ bool mbOLESizeInvalid; /**< Should be considered at SwDoc::PrtOLENotify
(e.g. copied). Is not persistent. */
SwEmbedObjectLink* mpObjectLink;
@@ -106,8 +106,8 @@ class SW_DLLPUBLIC SwOLENode: public SwNoTextNode
using SwNoTextNode::GetGraphic;
public:
- const SwOLEObj& GetOLEObj() const { return aOLEObj; }
- SwOLEObj& GetOLEObj() { return aOLEObj; }
+ const SwOLEObj& GetOLEObj() const { return maOLEObj; }
+ SwOLEObj& GetOLEObj() { return maOLEObj; }
virtual ~SwOLENode() override;
virtual SwContentNode *SplitContentNode( const SwPosition & ) override;
@@ -127,15 +127,15 @@ public:
bool IsInGlobalDocSection() const;
bool IsOLEObjectDeleted() const;
- bool IsOLESizeInvalid() const { return bOLESizeInvalid; }
- void SetOLESizeInvalid( bool b ){ bOLESizeInvalid = b; }
+ bool IsOLESizeInvalid() const { return mbOLESizeInvalid; }
+ void SetOLESizeInvalid( bool b ){ mbOLESizeInvalid = b; }
- sal_Int64 GetAspect() const { return aOLEObj.GetObject().GetViewAspect(); }
- void SetAspect( sal_Int64 nAspect) { aOLEObj.GetObject().SetViewAspect( nAspect ); }
+ sal_Int64 GetAspect() const { return maOLEObj.GetObject().GetViewAspect(); }
+ void SetAspect( sal_Int64 nAspect) { maOLEObj.GetObject().SetViewAspect( nAspect ); }
/** Remove OLE-object from "memory".
inline void Unload() { aOLEObj.Unload(); } */
- OUString GetDescription() const { return aOLEObj.GetDescription(); }
+ OUString GetDescription() const { return maOLEObj.GetDescription(); }
bool UpdateLinkURL_Impl();
void BreakFileLink_Impl();
@@ -146,8 +146,8 @@ public:
// #i99665#
bool IsChart() const;
- const OUString& GetChartTableName() const { return sChartTableName; }
- void SetChartTableName( const OUString& rNm ) { sChartTableName = rNm; }
+ const OUString& GetChartTableName() const { return msChartTableName; }
+ void SetChartTableName( const OUString& rNm ) { msChartTableName = rNm; }
};
/// Inline methods from Node.hxx