diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-08-23 07:31:09 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-08-23 07:31:09 +0000 |
commit | 8af119f775e359fb45f960785508f403a801a5e5 (patch) | |
tree | bee56f6a869c436cc5ee1d86d2a11fff0dc3c5e9 /sw/inc/fchrfmt.hxx | |
parent | 56812332872a721f08ad5fa55cf5c662927a557e (diff) |
INTEGRATION: CWS tune03 (1.4.772); FILE MERGED
2004/07/19 19:10:32 mhu 1.4.772.1: #i29979# Added SW_DLLPUBLIC/PRIVATE (see swdllapi.h) to exported symbols/classes.
Diffstat (limited to 'sw/inc/fchrfmt.hxx')
-rw-r--r-- | sw/inc/fchrfmt.hxx | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/sw/inc/fchrfmt.hxx b/sw/inc/fchrfmt.hxx index b9f116a71682..50d5e186d61b 100644 --- a/sw/inc/fchrfmt.hxx +++ b/sw/inc/fchrfmt.hxx @@ -2,9 +2,9 @@ * * $RCSfile: fchrfmt.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: dvo $ $Date: 2001-07-09 20:10:42 $ + * last change: $Author: rt $ $Date: 2004-08-23 08:31:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -82,10 +82,21 @@ class SwFmtCharFmt: public SfxPoolItem, public SwClient { friend class SwTxtCharFmt; SwTxtCharFmt* pTxtAttr; // mein TextAttribut + public: - SwFmtCharFmt( SwCharFmt *pFmt ); + SwFmtCharFmt() : pTxtAttr(0) {} + + // single argument ctors shall be explicit. + explicit SwFmtCharFmt( SwCharFmt *pFmt ); + virtual ~SwFmtCharFmt(); + + // @@@ public copy ctor, but no copy assignment? SwFmtCharFmt( const SwFmtCharFmt& rAttr ); - ~SwFmtCharFmt(); // fuer SEXPORT +private: + // @@@ public copy ctor, but no copy assignment? + SwFmtCharFmt & operator= (const SwFmtCharFmt &); +public: + TYPEINFO(); // "pure virtual Methoden" vom SfxPoolItem |