mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 14:25:27 +00:00
Cleanup: remove toggle parameter from DiveListView::selectDive()
This defaulted to false and no caller used anything different. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
364a8270d1
commit
75dac8906e
2 changed files with 6 additions and 8 deletions
|
@ -322,13 +322,11 @@ QList<dive_trip_t *> DiveListView::selectedTrips()
|
|||
return ret;
|
||||
}
|
||||
|
||||
void DiveListView::selectDive(QModelIndex idx, bool scrollto, bool toggle)
|
||||
void DiveListView::selectDive(QModelIndex idx, bool scrollto)
|
||||
{
|
||||
if (!idx.isValid())
|
||||
return;
|
||||
QItemSelectionModel::SelectionFlags flags = toggle ? QItemSelectionModel::Toggle : QItemSelectionModel::Select;
|
||||
flags |= QItemSelectionModel::Rows;
|
||||
selectionModel()->setCurrentIndex(idx, flags);
|
||||
selectionModel()->setCurrentIndex(idx, QItemSelectionModel::Select | QItemSelectionModel::Rows);
|
||||
if (idx.parent().isValid()) {
|
||||
setAnimated(false);
|
||||
expand(idx.parent());
|
||||
|
@ -341,7 +339,7 @@ void DiveListView::selectDive(QModelIndex idx, bool scrollto, bool toggle)
|
|||
selectionChangeDone();
|
||||
}
|
||||
|
||||
void DiveListView::selectDive(int i, bool scrollto, bool toggle)
|
||||
void DiveListView::selectDive(int i, bool scrollto)
|
||||
{
|
||||
if (i == -1)
|
||||
return;
|
||||
|
@ -350,7 +348,7 @@ void DiveListView::selectDive(int i, bool scrollto, bool toggle)
|
|||
if (match.isEmpty())
|
||||
return;
|
||||
QModelIndex idx = match.first();
|
||||
selectDive(idx, scrollto, toggle);
|
||||
selectDive(idx, scrollto);
|
||||
}
|
||||
|
||||
void DiveListView::selectDives(const QList<int> &newDiveSelection)
|
||||
|
|
|
@ -31,8 +31,8 @@ public:
|
|||
bool eventFilter(QObject *, QEvent *);
|
||||
void unselectDives();
|
||||
void clearTripSelection();
|
||||
void selectDive(QModelIndex index, bool scrollto = false, bool toggle = false);
|
||||
void selectDive(int dive_table_idx, bool scrollto = false, bool toggle = false);
|
||||
void selectDive(QModelIndex index, bool scrollto = false);
|
||||
void selectDive(int dive_table_idx, bool scrollto = false);
|
||||
void selectDives(const QList<int> &newDiveSelection);
|
||||
void contextMenuEvent(QContextMenuEvent *event);
|
||||
QList<dive_trip *> selectedTrips();
|
||||
|
|
Loading…
Add table
Reference in a new issue