Skip to content

Commit

Permalink
loplugin:implicitboolconversion
Browse files Browse the repository at this point in the history
Change-Id: Id59a7c9402c59e91715f63a88eeed40d2ef9bd92
  • Loading branch information
stbergmann committed Jul 13, 2015
1 parent 8695633 commit 7668396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sd/source/ui/view/outlview.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1196,7 +1196,7 @@ IMPL_LINK_NOARG_TYPED(OutlineView, RemovingPagesHdl, OutlinerView*, bool)
*/
IMPL_LINK_TYPED( OutlineView, IndentingPagesHdl, OutlinerView *, pOutlinerView, long )
{
return RemovingPagesHdl(pOutlinerView);
return RemovingPagesHdl(pOutlinerView) ? 1 : 0;
}

/** returns the first slide that is selected in the outliner or where
Expand Down

0 comments on commit 7668396

Please sign in to comment.