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.
This commit is contained in:
parent
5681233287
commit
8af119f775
1 changed files with 15 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue