diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx index 7fa734f82f7a..ddcced241548 100644 --- a/sc/source/ui/unoobj/cellsuno.cxx +++ b/sc/source/ui/unoobj/cellsuno.cxx @@ -9028,8 +9028,8 @@ void ScTableRowObj::GetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntr } else if ( pEntry->nWID == SC_WID_UNO_MANPAGE ) { - ScBreakType nBreak = (rDoc.HasRowBreak(nRow, nTab) & BREAK_MANUAL); - ScUnoHelpFunctions::SetBoolInAny( rAny, nBreak != BREAK_NONE ); + bool bBreak = (rDoc.HasRowBreak(nRow, nTab) & BREAK_MANUAL) != 0; + ScUnoHelpFunctions::SetBoolInAny( rAny, bBreak ); } else ScCellRangeObj::GetOnePropertyValue(pEntry, rAny);