[Libreoffice-commits] core.git: extensions/source

Stephan Bergmann sbergman at redhat.com
Tue Nov 25 00:46:39 PST 2014


 extensions/source/propctrlr/propertycomposer.hxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit da9fd02a4d1a36cf9d22d5b36ba36240585284f6
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Nov 25 09:46:13 2014 +0100

    -Werror,-Wuninitialized
    
    (in PropertyComposer ctor: base class 'comphelper::OBaseMutex' is
    uninitialized when used here to access 'comphelper::OBaseMutex::m_aMutex')
    
    Change-Id: I41ede9ab34e89c8dde23ce2e4fd6393b05c979c6

diff --git a/extensions/source/propctrlr/propertycomposer.hxx b/extensions/source/propctrlr/propertycomposer.hxx
index 4c71696..159d437 100644
--- a/extensions/source/propctrlr/propertycomposer.hxx
+++ b/extensions/source/propctrlr/propertycomposer.hxx
@@ -50,8 +50,8 @@ namespace pcr
     /** implements an <type>XPropertyHandler</type> which composes it's information
         from a set of other property handlers
     */
-    class PropertyComposer  :public PropertyComposer_Base
-                            ,public ::comphelper::OBaseMutex
+    class PropertyComposer  :public ::comphelper::OBaseMutex
+                            ,public PropertyComposer_Base
                             ,public IPropertyExistenceCheck
     {
     public:


More information about the Libreoffice-commits mailing list