diff options
author | Oliver Specht <os@openoffice.org> | 2001-04-20 07:54:55 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2001-04-20 07:54:55 +0000 |
commit | 44c234f034cdded4f23372c1731f5b958d316c35 (patch) | |
tree | 835848cf29f40c6488788a70996b56e37cd1bb31 /svx/inc | |
parent | 63b5e8d74b575e569854dedba8b1f4f5feb0b916 (diff) |
#80346# allow negative indents in SvxRelativeField
Diffstat (limited to 'svx/inc')
-rw-r--r-- | svx/inc/relfld.hxx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/svx/inc/relfld.hxx b/svx/inc/relfld.hxx index 45230e83e73d..797bd2b8208a 100644 --- a/svx/inc/relfld.hxx +++ b/svx/inc/relfld.hxx @@ -2,9 +2,9 @@ * * $RCSfile: relfld.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:00:58 $ + * last change: $Author: os $ $Date: 2001-04-20 08:54:15 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -68,7 +68,6 @@ #endif - // class SvxRelativeField ------------------------------------------------ /* [Beschreibung] @@ -85,6 +84,9 @@ private: USHORT nRelStep; BOOL bRelativeMode; BOOL bRelative; +#if SUPD>629 + BOOL bNegativeEnabled; +#endif protected: void Modify(); @@ -98,6 +100,9 @@ public: BOOL IsRelativeMode() const { return bRelativeMode; } void SetRelative( BOOL bRelative = FALSE ); BOOL IsRelative() const { return bRelative; } +#if SUPD>629 + BOOL EnableNegativeMode() {bNegativeEnabled = TRUE;} +#endif }; |