Kaydet (Commit) 2e5af8d6 authored tarafından Michaël Lefèvre's avatar Michaël Lefèvre Kaydeden (comit) Caolán McNamara

CppCheck cleaning : avoid unnecessary affectation

Change-Id: I3803c5898f94e2786ba6fa464b503f36f5a449ab
Reviewed-on: https://gerrit.libreoffice.org/14847Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst 697804f4
......@@ -495,8 +495,8 @@ void OJoinTableView::EnsureVisible(const Point& _rPoint,const Size& _rSize)
if (nScrollX)
bVisbile = ScrollPane(nScrollX, true, true);
if (nScrollY)
bVisbile = bVisbile && ScrollPane(nScrollY, false, true);
if (nScrollY && bVisbile)
ScrollPane(nScrollY, false, true);
}
}
......
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