diff options
author | Oliver Specht <os@openoffice.org> | 2001-02-23 11:45:30 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2001-02-23 11:45:30 +0000 |
commit | df8f0f09f334d126fd05545320b35d5f6e13a5c1 (patch) | |
tree | e1c89841ce7f4471521688fd5cf806f59840afab /sw/inc/lineinfo.hxx | |
parent | 3c156aaf66123396c5064aa2ba7af2fc57cb79f9 (diff) |
Complete use of DefaultNumbering component
Diffstat (limited to 'sw/inc/lineinfo.hxx')
-rw-r--r-- | sw/inc/lineinfo.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/lineinfo.hxx b/sw/inc/lineinfo.hxx index 5539ccfe4e..fdf95e1443 100644 --- a/sw/inc/lineinfo.hxx +++ b/sw/inc/lineinfo.hxx @@ -2,9 +2,9 @@ * * $RCSfile: lineinfo.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:14:27 $ + * last change: $Author: os $ $Date: 2001-02-23 12:45:01 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -83,7 +83,7 @@ enum LineNumberPosition class SwLineNumberInfo : public SwClient //purpose of derivation from SwClient: //character style for displaying the numbers. { - SwNumType aType; //e.g. roman linenumbers + SvxNumberType aType; //e.g. roman linenumbers String aDivider; //String for aditional interval (vert. lines user defined) USHORT nPosFromLeft; //Position for paint USHORT nCountBy; //Paint only for every n line @@ -106,8 +106,8 @@ public: SwCharFmt *GetCharFmt(SwDoc &rDoc) const; void SetCharFmt( SwCharFmt* ); - const SwNumType &GetNumType() const { return aType; } - void SetNumType( SwNumType aNew ) { aType = aNew; } + const SvxNumberType &GetNumType() const { return aType; } + void SetNumType( SvxNumberType aNew ){ aType = aNew; } const String &GetDivider() const { return aDivider; } void SetDivider( const String &r ) { aDivider = r; } |