BColumnListView: Add initializations to silence -Wmaybe-uninitialized.
This commit is contained in:
parent
d1035d48e6
commit
e7952d44d5
@ -4222,8 +4222,8 @@ OutlineView::RemoveRow(BRow* row)
|
||||
if (row == NULL)
|
||||
return;
|
||||
|
||||
BRow* parentRow;
|
||||
bool parentIsVisible;
|
||||
BRow* parentRow = NULL;
|
||||
bool parentIsVisible = false;
|
||||
FindParent(row, &parentRow, &parentIsVisible);
|
||||
// NOTE: This could be a root row without a parent, in which case
|
||||
// it is always visible, though.
|
||||
|
Loading…
Reference in New Issue
Block a user