diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-30 09:23:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-30 12:18:04 +0100 |
commit | 14b366e57a904c2c0d04804f15d8daf755f14541 (patch) | |
tree | 5997a5f1f60a5e0d418708948b408221ef50586c /slideshow/test | |
parent | cabf739612a0e979ebcf76f40a24e66a354b10a5 (diff) |
loplugin:singlevalfields
Change-Id: I70dc861573fd1b3d799c88aa2a6d9a3eda0e2a43
Reviewed-on: https://gerrit.libreoffice.org/64327
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'slideshow/test')
-rw-r--r-- | slideshow/test/testview.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/slideshow/test/testview.cxx b/slideshow/test/testview.cxx index 503cd796a2bb..48c73e9ef451 100644 --- a/slideshow/test/testview.cxx +++ b/slideshow/test/testview.cxx @@ -56,7 +56,6 @@ class ImplTestView : public TestView, basegfx::B1DRange maPriority; bool mbIsClipSet; bool mbIsClipEmptied; - bool mbIsClearCalled; bool mbDisposed; @@ -69,7 +68,6 @@ public: maPriority(), mbIsClipSet(false), mbIsClipEmptied(false), - mbIsClearCalled(false), mbDisposed( false ) { } @@ -143,7 +141,7 @@ public: // TestView virtual bool isClearCalled() const override { - return mbIsClearCalled; + return false; } virtual std::vector<std::pair<basegfx::B2DVector,double> > getCreatedSprites() const override |