diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-11-25 10:34:30 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-11-25 10:34:30 +0100 |
commit | 34d464316872fec13fc024d630cbfcc26b77185a (patch) | |
tree | 4e400fc95ea081795bc756243240230242e78594 /slideshow | |
parent | 761e40251f23b2e66dfe86d329ed6345b272bd89 (diff) |
-Werror,-Wuninitialized
(in DummyRenderer ctor: base class 'comphelper::OBaseMutex' is
uninitialized when used here to access 'comphelper::OBaseMutex::m_aMutex')
Change-Id: I5b151176c676a58593933b3f2e33a3e2dfdcc630
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/source/engine/shapes/gdimtftools.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/slideshow/source/engine/shapes/gdimtftools.cxx b/slideshow/source/engine/shapes/gdimtftools.cxx index 4d2b046e164c..f3a52ca300f3 100644 --- a/slideshow/source/engine/shapes/gdimtftools.cxx +++ b/slideshow/source/engine/shapes/gdimtftools.cxx @@ -107,9 +107,7 @@ namespace { typedef ::cppu::WeakComponentImplHelper1< graphic::XGraphicRenderer > DummyRenderer_Base; -class DummyRenderer : - public DummyRenderer_Base, - public cppu::BaseMutex +class DummyRenderer: public cppu::BaseMutex, public DummyRenderer_Base { public: DummyRenderer() : |