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

Caolán McNamara caolanm at redhat.com
Thu May 8 08:18:42 PDT 2014


 svtools/source/uno/unoiface.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 940ac1e52ef5921e47a835f28e4da870cc2ded40
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Thu May 8 16:18:15 2014 +0100

    WaE: -Werror=maybe-uninitialized
    
    Change-Id: I8f63bc51c48d69eaa81bf080b05747c026871f08

diff --git a/svtools/source/uno/unoiface.cxx b/svtools/source/uno/unoiface.cxx
index 0b9f036..f713f42 100644
--- a/svtools/source/uno/unoiface.cxx
+++ b/svtools/source/uno/unoiface.cxx
@@ -574,7 +574,7 @@ void SAL_CALL VCLXFileControl::setProperty( const OUString& PropertyName, const
         {
         case BASEPROPERTY_HIDEINACTIVESELECTION:
         {
-            bool bValue;
+            bool bValue(false);
             OSL_VERIFY( Value >>= bValue );
 
             lcl_setWinBits( pControl, WB_NOHIDESELECTION, !bValue );


More information about the Libreoffice-commits mailing list