Kaydet (Commit) b3d898c2 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror=maybe-uninitialized

Change-Id: Ie6814e8ebb3fa17d545a86d18f5c9a895ab5a0ca
üst 3e787999
......@@ -1799,7 +1799,10 @@ sal_Bool SlideShowImpl::setProperty( beans::PropertyValue const& rProperty )
if ( rProperty.Name == "PointerVisible" )
{
bool visible;
rProperty.Value >>= visible;
if (!(rProperty.Value >>= visible))
{
return false;
}
mpPointerSymbol->setVisible(visible);
}
......
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