diff options
author | Oliver Bolte <obo@openoffice.org> | 2008-02-26 08:44:28 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2008-02-26 08:44:28 +0000 |
commit | b79884c5f95f4948a80d263623b63443d85fb556 (patch) | |
tree | df90f7e50c1fac93251599953740ace9e11cd9ef /sw/inc/unotextmarkup.hxx | |
parent | 677eba2322d2753951024c688d59553182bf2fbd (diff) |
INTEGRATION: CWS gcframework_DEV300 (1.2.124); FILE MERGED
2007/11/21 13:31:43 tl 1.2.124.1: #i83776# grammar checking framework
Diffstat (limited to 'sw/inc/unotextmarkup.hxx')
-rw-r--r-- | sw/inc/unotextmarkup.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/inc/unotextmarkup.hxx b/sw/inc/unotextmarkup.hxx index bd7b5e98baa6..2e4a5e03a5f2 100644 --- a/sw/inc/unotextmarkup.hxx +++ b/sw/inc/unotextmarkup.hxx @@ -4,9 +4,9 @@ * * $RCSfile: unotextmarkup.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: hr $ $Date: 2007-06-27 13:14:53 $ + * last change: $Author: obo $ $Date: 2008-02-26 09:44:28 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -63,11 +63,12 @@ class SfxPoolItem; */ class SwXTextMarkup: public ::cppu::WeakImplHelper1< - ::com::sun::star::text::XTextMarkup>, + ::com::sun::star::text::XTextMarkup >, public SwClient { public: SwXTextMarkup( SwTxtNode& rTxtNode, const ModelToViewHelper::ConversionMap* pConversionMap ); + virtual ~SwXTextMarkup(); // ::com::sun::star::smarttags::XTextMarkup: virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XStringKeyMap > SAL_CALL getMarkupInfoContainer() throw (::com::sun::star::uno::RuntimeException); @@ -77,14 +78,13 @@ public: virtual void Modify( SfxPoolItem *pOld, SfxPoolItem *pNew); private: + SwXTextMarkup( const SwXTextMarkup & ); // not defined + SwXTextMarkup & operator =( const SwXTextMarkup & ); // not defined +protected: SwTxtNode* mpTxtNode; const ModelToViewHelper::ConversionMap* mpConversionMap; - SwXTextMarkup(SwXTextMarkup &); // not defined - void operator =(SwXTextMarkup &); // not defined - - virtual ~SwXTextMarkup(); }; |