Kaydet (Commit) b989f407 authored tarafından Pavel Janík's avatar Pavel Janík

WaE: Prevent uninitialized variable warnings.

üst 7bb64548
......@@ -1190,7 +1190,7 @@ namespace accessibility
SvLBoxEntry* pEntry = pBox->GetEntryFromPath( m_aEntryPath );
if ( pEntry )
{
sal_Int32 nValue, nValueMin, nValueMax;
sal_Int32 nValue(0), nValueMin(0), nValueMax(0);
aNumber >>= nValue;
getMinimumValue() >>= nValueMin;
getMaximumValue() >>= nValueMax;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment