diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-05-13 08:40:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-05-13 15:01:41 +0200 |
commit | 2088a5e598452a1592023d7606ba4447dc2b3242 (patch) | |
tree | 15f43eebfdcd7420e6ffc95581d2305a60ca6f14 /sw | |
parent | 50e58a9e93424e99fa95234ab5cb07c4db9b580d (diff) |
options swapped in SwAccessibilityOptions
ever since
commit d93f729bf463a5ad12e2c4a49e80fd7ff5622334
#100333# separate accessibility options from view options
Change-Id: I54d2c6de98c5d4f0d760d18d3d219710c7d91de9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94094
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/accessibilityoptions.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/inc/accessibilityoptions.hxx b/sw/inc/accessibilityoptions.hxx index 05ce3665b1ce..2fec278bc0cb 100644 --- a/sw/inc/accessibilityoptions.hxx +++ b/sw/inc/accessibilityoptions.hxx @@ -33,11 +33,11 @@ struct SwAccessibilityOptions bool IsAlwaysAutoColor() const { return bIsAlwaysAutoColor; } void SetAlwaysAutoColor( bool b ) { bIsAlwaysAutoColor = b; } - bool IsStopAnimatedGraphics() const { return bIsStopAnimatedText;} - void SetStopAnimatedGraphics( bool b ) { bIsStopAnimatedText = b; } + bool IsStopAnimatedGraphics() const { return bIsStopAnimatedGraphics;} + void SetStopAnimatedGraphics( bool b ) { bIsStopAnimatedGraphics = b; } - bool IsStopAnimatedText() const { return bIsStopAnimatedGraphics; } - void SetStopAnimatedText( bool b ) { bIsStopAnimatedGraphics = b;} + bool IsStopAnimatedText() const { return bIsStopAnimatedText; } + void SetStopAnimatedText( bool b ) { bIsStopAnimatedText = b;} }; #endif |