diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-08 16:18:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-08 16:18:15 +0100 |
commit | 940ac1e52ef5921e47a835f28e4da870cc2ded40 (patch) | |
tree | c69d6ced4f20d3c3c7661609d2bbfca41bbd843e | |
parent | ae71ad47e938259732a1a38bf1644774a0939ff4 (diff) |
WaE: -Werror=maybe-uninitialized
Change-Id: I8f63bc51c48d69eaa81bf080b05747c026871f08
-rw-r--r-- | svtools/source/uno/unoiface.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/uno/unoiface.cxx b/svtools/source/uno/unoiface.cxx index 0b9f0366fbc8..f713f428db35 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 ); |