summaryrefslogtreecommitdiffstats
path: root/desktop-widgets
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2018-07-30 20:41:33 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-07-30 12:20:26 -0700
commit5e1e6110ce50b33e24667ce83ab5d2417a2a466e (patch)
tree8a5bea4ca9463904b6d4d8b786793d39a8f02dfe /desktop-widgets
parentd3f3d82abdaabebf5a8c83a57cc6b9e0b7aab1de (diff)
downloadsubsurface-5e1e6110ce50b33e24667ce83ab5d2417a2a466e.tar.gz
Cleanup: remove parameter from currentDiveChanged signal
The currentDiveChanged signal was emitted by the DiveListView to inform the MainWindow of a change of current dive. The new current dive was passed as a parameter. The slot in MainWindow then called select_dive() on the dive. This seems pointless because: 1) In both emits, selected_dive dive was passed as argument. But MainWindow can read this global variable itself. 2) Calling select_dive() again is a no-op, because obviously, this already *was* the selected dive. Moreover it seems conceptually wrong to set the current dive in the slot that is informed of the change of the current dive. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets')
-rw-r--r--desktop-widgets/divelistview.cpp4
-rw-r--r--desktop-widgets/divelistview.h2
-rw-r--r--desktop-widgets/mainwindow.cpp7
-rw-r--r--desktop-widgets/mainwindow.h2
-rw-r--r--desktop-widgets/starwidget.cpp4
5 files changed, 8 insertions, 11 deletions
diff --git a/desktop-widgets/divelistview.cpp b/desktop-widgets/divelistview.cpp
index 8795eeea8..8e6885ee1 100644
--- a/desktop-widgets/divelistview.cpp
+++ b/desktop-widgets/divelistview.cpp
@@ -342,7 +342,7 @@ void DiveListView::selectDives(const QList<int> &newDiveSelection)
scrollTo(idx);
}
// now that everything is up to date, update the widgets
- Q_EMIT currentDiveChanged(selected_dive);
+ emit currentDiveChanged();
dontEmitDiveChangedSignal = false;
return;
}
@@ -544,7 +544,7 @@ void DiveListView::selectionChanged(const QItemSelection &selected, const QItemS
connect(selectionModel(), SIGNAL(selectionChanged(QItemSelection, QItemSelection)), this, SLOT(selectionChanged(QItemSelection, QItemSelection)));
connect(selectionModel(), SIGNAL(currentChanged(QModelIndex, QModelIndex)), this, SLOT(currentChanged(QModelIndex, QModelIndex)));
if (!dontEmitDiveChangedSignal)
- Q_EMIT currentDiveChanged(selected_dive);
+ emit currentDiveChanged();
}
enum asked_user {NOTYET, MERGE, DONTMERGE};
diff --git a/desktop-widgets/divelistview.h b/desktop-widgets/divelistview.h
index 1fe0e803d..e70f96a72 100644
--- a/desktop-widgets/divelistview.h
+++ b/desktop-widgets/divelistview.h
@@ -59,7 +59,7 @@ slots:
void loadWebImages();
signals:
- void currentDiveChanged(int divenr);
+ void currentDiveChanged();
private:
bool mouseClickSelection;
diff --git a/desktop-widgets/mainwindow.cpp b/desktop-widgets/mainwindow.cpp
index a9423e053..64ea2ef6d 100644
--- a/desktop-widgets/mainwindow.cpp
+++ b/desktop-widgets/mainwindow.cpp
@@ -193,7 +193,7 @@ MainWindow::MainWindow() : QMainWindow(),
if (!QIcon::hasThemeIcon("window-close")) {
QIcon::setThemeName("subsurface");
}
- connect(dive_list(), SIGNAL(currentDiveChanged(int)), this, SLOT(current_dive_changed(int)));
+ connect(dive_list(), &DiveListView::currentDiveChanged, this, &MainWindow::current_dive_changed);
connect(PreferencesDialog::instance(), SIGNAL(settingsChanged()), this, SLOT(readSettings()));
connect(PreferencesDialog::instance(), SIGNAL(settingsChanged()), diveListView, SLOT(update()));
connect(PreferencesDialog::instance(), SIGNAL(settingsChanged()), diveListView, SLOT(reloadHeaderActions()));
@@ -535,11 +535,8 @@ void MainWindow::configureToolbar() {
}
}
-void MainWindow::current_dive_changed(int divenr)
+void MainWindow::current_dive_changed()
{
- if (divenr >= 0) {
- select_dive(divenr);
- }
graphics()->plotDive(nullptr, false, true);
information()->updateDiveInfo();
configureToolbar();
diff --git a/desktop-widgets/mainwindow.h b/desktop-widgets/mainwindow.h
index ab9ebf316..8c7347fd3 100644
--- a/desktop-widgets/mainwindow.h
+++ b/desktop-widgets/mainwindow.h
@@ -138,7 +138,7 @@ slots:
void on_action_Check_for_Updates_triggered();
void on_actionDiveSiteEdit_triggered();
- void current_dive_changed(int divenr);
+ void current_dive_changed();
void initialUiSetup();
void on_actionImportDiveLog_triggered();
diff --git a/desktop-widgets/starwidget.cpp b/desktop-widgets/starwidget.cpp
index f5ba43be8..2f72d7df0 100644
--- a/desktop-widgets/starwidget.cpp
+++ b/desktop-widgets/starwidget.cpp
@@ -57,7 +57,7 @@ void StarWidget::mouseReleaseEvent(QMouseEvent *event)
else
current = starClicked;
- Q_EMIT valueChanged(current);
+ emit valueChanged(current);
update();
}
@@ -88,7 +88,7 @@ void StarWidget::setCurrentStars(int value)
{
current = value;
update();
- Q_EMIT valueChanged(current);
+ emit valueChanged(current);
}
StarWidget::StarWidget(QWidget *parent, Qt::WindowFlags f) : QWidget(parent, f),