src/EditProduct.cpp

changeset 214
641540dc6ef2
parent 213
a167ee979cac
child 218
725da10db56c
--- a/src/EditProduct.cpp	Tue May 17 14:37:26 2022 +0200
+++ b/src/EditProduct.cpp	Tue May 17 16:57:48 2022 +0200
@@ -1085,6 +1085,11 @@
     connect(ui->brew_startButton1, SIGNAL(clicked()), this, SLOT(brew_date_today()));
     connect(ui->brew_startButton2, SIGNAL(clicked()), this, SLOT(brew_date_clear()));
     connect(ui->brew_startDate, &QDateEdit::dateChanged, this, &EditProduct::brew_start_date_changed);
+    connect(ui->brew_startTime, &QTimeEdit::timeChanged, this, &EditProduct::brew_start_time_changed);
+    connect(ui->brew_endDate, &QDateEdit::dateChanged, this, &EditProduct::brew_end_date_changed);
+    connect(ui->brew_endTime, &QTimeEdit::timeChanged, this, &EditProduct::brew_end_time_changed);
+    connect(ui->brew_endButton1, SIGNAL(clicked()), this, SLOT(brew_end_today()));
+    connect(ui->brew_ackButton, SIGNAL(clicked()), this, SLOT(brew_date_ack()));
     connect(ui->brew_mashphEdit, QOverload<double>::of(&QDoubleSpinBox::valueChanged), this, &EditProduct::brew_mashph_changed);
     connect(ui->brew_mashsgEdit, QOverload<double>::of(&QDoubleSpinBox::valueChanged), this, &EditProduct::brew_mashsg_changed);
     connect(ui->brew_spargephEdit, QOverload<double>::of(&QDoubleSpinBox::valueChanged), this, &EditProduct::brew_spargeph_changed);

mercurial