Fix Coverity bug 1108392: Stray semicolon
Signed-off-by: Philippe Saint-Pierre <[email protected]>
This commit is contained in:
committed by
Philippe Saint-Pierre
parent
c4f80d1ee8
commit
62f70e6f0a
@@ -2004,7 +2004,7 @@ BColumnListView::DoLayout()
|
|||||||
|
|
||||||
if (fStatusView != NULL) {
|
if (fStatusView != NULL) {
|
||||||
BSize size = fStatusView->MinSize();
|
BSize size = fStatusView->MinSize();
|
||||||
if (size.height > B_H_SCROLL_BAR_HEIGHT);
|
if (size.height > B_H_SCROLL_BAR_HEIGHT)
|
||||||
size.height = B_H_SCROLL_BAR_HEIGHT;
|
size.height = B_H_SCROLL_BAR_HEIGHT;
|
||||||
if (size.width > Bounds().Width() / 2)
|
if (size.width > Bounds().Width() / 2)
|
||||||
size.width = floorf(Bounds().Width() / 2);
|
size.width = floorf(Bounds().Width() / 2);
|
||||||
|
|||||||
Reference in New Issue
Block a user