diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2014-06-26 14:57:25 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-26 15:48:49 -0700 |
commit | 81fd56b16fd4678626a9cadec7311fffbccec502 (patch) | |
tree | ea85b3572448cbc392da4e65c0a41512f2d04f9c /qt-ui/maintab.h | |
parent | 1e2349e7945b0f56fef503179dd0550db0137495 (diff) | |
download | subsurface-81fd56b16fd4678626a9cadec7311fffbccec502.tar.gz |
Fixed changing dates with the new date widget.
The maintab was connecting with an invalid slot on the
new date widget, QDateTime instead of QDate
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/maintab.h')
-rw-r--r-- | qt-ui/maintab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/maintab.h b/qt-ui/maintab.h index 1e7b5d3a3..f20af8477 100644 --- a/qt-ui/maintab.h +++ b/qt-ui/maintab.h @@ -68,7 +68,7 @@ slots: void on_airtemp_textChanged(const QString &text); void on_watertemp_textChanged(const QString &text); void validate_temp_field(QLineEdit *tempField, const QString &text); - void on_dateEdit_dateChanged(const QDateTime &datetime); + void on_dateEdit_dateChanged(const QDate &date); void on_timeEdit_timeChanged(const QTime & time); void on_rating_valueChanged(int value); void on_visibility_valueChanged(int value); |