summaryrefslogtreecommitdiff
path: root/sw/inc/accessibilityoptions.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/inc/accessibilityoptions.hxx')
-rw-r--r--sw/inc/accessibilityoptions.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/inc/accessibilityoptions.hxx b/sw/inc/accessibilityoptions.hxx
index ce3a64564254..9e54e7449f73 100644
--- a/sw/inc/accessibilityoptions.hxx
+++ b/sw/inc/accessibilityoptions.hxx
@@ -32,14 +32,14 @@ struct SwAccessibilityOptions
bIsStopAnimatedText(false),
bIsStopAnimatedGraphics(false) {}
- inline bool IsAlwaysAutoColor() const { return bIsAlwaysAutoColor; }
- inline void SetAlwaysAutoColor( bool b ) { bIsAlwaysAutoColor = b; }
+ bool IsAlwaysAutoColor() const { return bIsAlwaysAutoColor; }
+ void SetAlwaysAutoColor( bool b ) { bIsAlwaysAutoColor = b; }
- inline bool IsStopAnimatedGraphics() const { return bIsStopAnimatedText;}
- inline void SetStopAnimatedGraphics( bool b ) { bIsStopAnimatedText = b; }
+ bool IsStopAnimatedGraphics() const { return bIsStopAnimatedText;}
+ void SetStopAnimatedGraphics( bool b ) { bIsStopAnimatedText = b; }
- inline bool IsStopAnimatedText() const { return bIsStopAnimatedGraphics; }
- inline void SetStopAnimatedText( bool b ) { bIsStopAnimatedGraphics = b;}
+ bool IsStopAnimatedText() const { return bIsStopAnimatedGraphics; }
+ void SetStopAnimatedText( bool b ) { bIsStopAnimatedGraphics = b;}
};
#endif