INTEGRATION: CWS oasisbf2 (1.4.70); FILE MERGED

2004/11/08 13:08:14 dvo 1.4.70.2: #i31024# fix symbol export
2004/11/04 15:30:21 dvo 1.4.70.1: #i31024# prevent headings with outline num-rules from being written as lists
         (plus dependent changes for NO_NUM removal)
This commit is contained in:
Rüdiger Timm 2004-11-26 12:22:12 +00:00
parent e5244a866f
commit d1460294a3

View file

@ -2,9 +2,9 @@
*
* $RCSfile: fmtcol.hxx,v $
*
* $Revision: 1.4 $
* $Revision: 1.5 $
*
* last change: $Author: hr $ $Date: 2004-09-08 14:50:21 $
* last change: $Author: rt $ $Date: 2004-11-26 13:22:12 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -100,7 +100,7 @@ private:
};
class SwTxtFmtColl: public SwFmtColl
class SW_DLLPUBLIC SwTxtFmtColl: public SwFmtColl
{
friend class SwDoc;
@ -133,7 +133,7 @@ public:
TYPEINFO(); //Bereits in Basisklasse Client drin.
inline void SetOutlineLevel( BYTE );
void SetOutlineLevel( BYTE );
inline BYTE GetOutlineLevel() const { return nOutlineLevel; }
inline void SetNextTxtFmtColl(SwTxtFmtColl& rNext);
@ -297,14 +297,5 @@ inline void SwTxtFmtColl::SetNextTxtFmtColl( SwTxtFmtColl& rNext )
{
pNextTxtFmtColl = &rNext;
}
inline void SwTxtFmtColl::SetOutlineLevel( BYTE nLevel )
{
ASSERT( nLevel < MAXLEVEL || nLevel == NO_NUMBERING ,
"SwTxtFmtColl: Level too low" );
nOutlineLevel = nLevel;
}
#endif