Cleanup: remove unnecessary signal

The edit dive site button was connected to a *signal* of MainWindow,
which was connected to a slot of MainWindow. Remove the unnecessary
intermediate signal.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2019-03-16 11:51:42 +01:00 committed by Dirk Hohndel
parent cd3a8ba354
commit d0435672ac
3 changed files with 3 additions and 6 deletions

View file

@ -134,7 +134,6 @@ slots:
void on_actionReplanDive_triggered();
void on_action_Check_for_Updates_triggered();
void on_actionDiveSiteEdit_triggered();
void selectionChanged();
void initialUiSetup();
@ -156,7 +155,6 @@ protected:
void closeEvent(QCloseEvent *);
signals:
void startDiveSiteEdit();
void showError(QString message);
public
@ -177,7 +175,7 @@ slots:
void disableShortcuts(bool disablePaste = true);
void enableShortcuts();
void updateVariations(QString);
void startDiveSiteEdit();
private:
Ui::MainWindow ui;