diff options
author | Tomaz Canabrava <tomaz.canabrava@gmail.com> | 2015-05-29 23:05:32 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-05-29 20:59:30 -0700 |
commit | b0d7d0f3b9beb25a523e5c4db396a859c4562a23 (patch) | |
tree | 7b1539326e7dff38ae93eafad0bce2ca365fa590 /qt-ui/maintab.h | |
parent | ac6a7ab24e087cc150a7eff0ff6e7e4f8c52ce9a (diff) | |
download | subsurface-b0d7d0f3b9beb25a523e5c4db396a859c4562a23.tar.gz |
Fix the connections for the Location Edit
The LocationEdit now correctly connects to the QComboBox signals, not the
QLineEdit signals.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/maintab.h')
-rw-r--r-- | qt-ui/maintab.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qt-ui/maintab.h b/qt-ui/maintab.h index 466733b8b..afca4a53c 100644 --- a/qt-ui/maintab.h +++ b/qt-ui/maintab.h @@ -65,8 +65,7 @@ slots: void updateDiveInfo(bool clear = false); void acceptChanges(); void rejectChanges(); - void on_location_textChanged(const QString &text); - void on_location_editingFinished(); + void on_location_currentTextChanged(const QString &text); void on_divemaster_textChanged(); void on_buddy_textChanged(); void on_suit_textChanged(const QString &text); |