summaryrefslogtreecommitdiff
path: root/sw/inc/accessibilityoptions.hxx
diff options
context:
space:
mode:
authorFrank Meies <fme@openoffice.org>2002-12-06 08:35:28 +0000
committerFrank Meies <fme@openoffice.org>2002-12-06 08:35:28 +0000
commit760266ae3537cb930a9bea40ad208fbc25baadc7 (patch)
tree8b106ee549346beb4396059908d6ec9a865fa36d /sw/inc/accessibilityoptions.hxx
parente0f647f3e609825079aebf5152a3f782dd55ab67 (diff)
#105734# Removed UseAutomaticBorderColor
Diffstat (limited to 'sw/inc/accessibilityoptions.hxx')
-rw-r--r--sw/inc/accessibilityoptions.hxx11
1 files changed, 3 insertions, 8 deletions
diff --git a/sw/inc/accessibilityoptions.hxx b/sw/inc/accessibilityoptions.hxx
index a1be25bf1c96..cba87a6a483b 100644
--- a/sw/inc/accessibilityoptions.hxx
+++ b/sw/inc/accessibilityoptions.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: accessibilityoptions.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: os $ $Date: 2002-11-01 13:15:49 $
+ * last change: $Author: fme $ $Date: 2002-12-06 09:35:28 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -70,13 +70,11 @@ struct SwAccessibilityOptions
BOOL bIsAlwaysAutoColor :1;
BOOL bIsStopAnimatedText :1;
BOOL bIsStopAnimatedGraphics :1;
- BOOL bUseAutomaticBorderColor :1;
SwAccessibilityOptions() :
bIsAlwaysAutoColor(FALSE),
bIsStopAnimatedText(FALSE),
- bIsStopAnimatedGraphics(FALSE),
- bUseAutomaticBorderColor(FALSE){}
+ bIsStopAnimatedGraphics(FALSE) {}
inline BOOL IsAlwaysAutoColor() const { return bIsAlwaysAutoColor; }
inline void SetAlwaysAutoColor( BOOL b ) { bIsAlwaysAutoColor = b; }
@@ -86,9 +84,6 @@ struct SwAccessibilityOptions
inline BOOL IsStopAnimatedText() const { return bIsStopAnimatedGraphics; }
inline void SetStopAnimatedText( BOOL b ) { bIsStopAnimatedGraphics = b;}
-
- inline BOOL IsUseAutomaticBorderColor() const { return bUseAutomaticBorderColor; }
- inline void SetUseAutomaticBorderColor( BOOL b ) { bUseAutomaticBorderColor = b; }
};
#endif