[Libreoffice-commits] core.git: sw/inc
Noel Grandin (via logerrit)
logerrit at kemper.freedesktop.org
Wed May 13 13:02:20 UTC 2020
sw/inc/accessibilityoptions.hxx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
New commits:
commit 2088a5e598452a1592023d7606ba4447dc2b3242
Author: Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Wed May 13 08:40:17 2020 +0200
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Wed May 13 15:01:41 2020 +0200
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 at collabora.co.uk>
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
More information about the Libreoffice-commits
mailing list