diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-07-16 08:48:30 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-07-16 08:49:09 +0100 |
commit | 91f41ac71a773e2016f2f53e08e85c5fc065999d (patch) | |
tree | 8840bc9dd12cca6a19e866d6f2865c33546fa316 /unotools | |
parent | 3209d1a5fc7f1711bf4fb42e57ab300082ba51e8 (diff) |
WaE: -Wmaybe-uninitialized
Change-Id: Ie49c6a8067c5223bbe3c86505aa909c2bd5d3c93
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/config/lingucfg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/config/lingucfg.cxx b/unotools/source/config/lingucfg.cxx index 2439cd45c358..5bda4e65b148 100644 --- a/unotools/source/config/lingucfg.cxx +++ b/unotools/source/config/lingucfg.cxx @@ -569,7 +569,7 @@ bool SvtLinguConfigItem::LoadOptions( const uno::Sequence< OUString > &rProperyN for (sal_Int32 i = 0; i < nProps; ++i) { const uno::Any &rVal = pValue[i]; - sal_Int32 nPropertyHandle; + sal_Int32 nPropertyHandle(0); GetHdlByName( nPropertyHandle, pProperyNames[i], true ); switch ( nPropertyHandle ) { |