Kaydet (Commit) 594ef250 authored tarafından Julien Nabet's avatar Julien Nabet

Related tdf#92262: PIVOTTABLE: crash when clicking on the autofilter arrow

Missing "else" in front of the "if"
Regression from http://cgit.freedesktop.org/libreoffice/core/commit/?id=7b355da6853af6678c4ba22710d157cf8a6d43eb

Change-Id: I3c32e8f09acbea7094c4268384ec4b1c4e028fc5
Reviewed-on: https://gerrit.libreoffice.org/16497Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarDeena Francis <deena.francis@gmail.com>
Tested-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst bead58cb
......@@ -2235,7 +2235,7 @@ uno::Any SAL_CALL ScDPLevel::getPropertyValue( const OUString& aPropertyName )
uno::Any aRet;
if ( aPropertyName == SC_UNO_DP_SHOWEMPTY )
lcl_SetBoolInAny(aRet, bShowEmpty);
if ( aPropertyName == SC_UNO_DP_REPEATITEMLABELS )
else if ( aPropertyName == SC_UNO_DP_REPEATITEMLABELS )
lcl_SetBoolInAny(aRet, bRepeatItemLabels);
else if ( aPropertyName == SC_UNO_DP_SUBTOTAL )
{
......
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