diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 15:25:41 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 17:52:26 +0200 |
commit | bff4c13475957863bfa7da5bc3bcf82a64a7503a (patch) | |
tree | 23530ecc27cb8d46b26d5d4aea6b058e5fbaf9db /sw/inc/node.hxx | |
parent | 27491c28cb67ada0a4c5eaa90eaf589425990582 (diff) |
Replace "SAL_DELETED_FUNCTION" with "= delete" in LIBO_INTERNAL_ONLY code
Change-Id: I328ac7a95ccc87732efae48b567a0556865928f3
Diffstat (limited to 'sw/inc/node.hxx')
-rw-r--r-- | sw/inc/node.hxx | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/sw/inc/node.hxx b/sw/inc/node.hxx index 0f1d84420faa..a892d7659866 100644 --- a/sw/inc/node.hxx +++ b/sw/inc/node.hxx @@ -292,8 +292,8 @@ public: virtual void dumpAsXml(struct _xmlTextWriter* pWriter) const; private: - SwNode( const SwNode & rNodes ) SAL_DELETED_FUNCTION; - SwNode & operator= ( const SwNode & rNodes ) SAL_DELETED_FUNCTION; + SwNode( const SwNode & rNodes ) = delete; + SwNode & operator= ( const SwNode & rNodes ) = delete; }; /// Starts a section of nodes in the document model. @@ -324,8 +324,8 @@ public: virtual void dumpAsXml(struct _xmlTextWriter* pWriter) const SAL_OVERRIDE; private: - SwStartNode( const SwStartNode & rNode ) SAL_DELETED_FUNCTION; - SwStartNode & operator= ( const SwStartNode & rNode ) SAL_DELETED_FUNCTION; + SwStartNode( const SwStartNode & rNode ) = delete; + SwStartNode & operator= ( const SwStartNode & rNode ) = delete; }; /// Ends a section of nodes in the document model. @@ -344,8 +344,8 @@ protected: DECL_FIXEDMEMPOOL_NEWDEL(SwEndNode) private: - SwEndNode( const SwEndNode & rNode ) SAL_DELETED_FUNCTION; - SwEndNode & operator= ( const SwEndNode & rNode ) SAL_DELETED_FUNCTION; + SwEndNode( const SwEndNode & rNode ) = delete; + SwEndNode & operator= ( const SwEndNode & rNode ) = delete; }; // SwContentNode @@ -485,8 +485,8 @@ public: virtual drawinglayer::attribute::SdrAllFillAttributesHelperPtr getSdrAllFillAttributesHelper() const; private: - SwContentNode( const SwContentNode & rNode ) SAL_DELETED_FUNCTION; - SwContentNode & operator= ( const SwContentNode & rNode ) SAL_DELETED_FUNCTION; + SwContentNode( const SwContentNode & rNode ) = delete; + SwContentNode & operator= ( const SwContentNode & rNode ) = delete; }; // SwTableNode @@ -523,8 +523,8 @@ public: void RemoveRedlines(); private: - SwTableNode( const SwTableNode & rNode ) SAL_DELETED_FUNCTION; - SwTableNode & operator= ( const SwTableNode & rNode ) SAL_DELETED_FUNCTION; + SwTableNode( const SwTableNode & rNode ) = delete; + SwTableNode & operator= ( const SwTableNode & rNode ) = delete; }; class SwSectionNode @@ -533,8 +533,8 @@ class SwSectionNode friend class SwNodes; private: - SwSectionNode(const SwSectionNode&) SAL_DELETED_FUNCTION; - SwSectionNode& operator=(const SwSectionNode&) SAL_DELETED_FUNCTION; + SwSectionNode(const SwSectionNode&) = delete; + SwSectionNode& operator=(const SwSectionNode&) = delete; std::unique_ptr<SwSection> const m_pSection; |