--- as_assist.cpp 2002/12/03 18:46:25 1.40
+++ as_assist.cpp 2002/12/03 19:07:55 1.41
@@ -626,10 +626,11 @@
// Start edit controls off at right size
this->updSizes(TITRAQ_IDXALLCTRLS, -1, -1);
-// // Signals
-// connect(m_pDateedit, SIGNAL(valueChanged(const QDate &date)), this, SLOT(updateDate()));
-// connect(m_pStarttime, SIGNAL(valueChanged(const QTime &time)), this, SLOT(updateStart()));
-// connect(m_pEndtime, SIGNAL(valueChanged(const QTime &time)), this, SLOT(updateFinish()));
-// connect(m_pAmount, SIGNAL(valueChanged(int value), this, SLOT(updateAmount()));
-// connect(m_pTasks, SIGNAL(textChanged(const QString &string), this, SLOT(updateTask()));
+ // Signals
+ connect(m_pDateedit, SIGNAL(valueChanged(const QDate &)), this, SLOT(updateDate(const QDate &)));
+ connect(m_pStarttime, SIGNAL(valueChanged(const QTime &)), this, SLOT(updateStart(const QTime &)));
+ connect(m_pEndtime, SIGNAL(valueChanged(const QTime &)), this, SLOT(updateFinish(const QTime &)));
+ connect(m_pAmount, SIGNAL(valueChanged(int)), this, SLOT(updateAmount(int)));
+ connect(m_pTasks, SIGNAL(textChanged(const QString &)), this, SLOT(updateTask(const QString &)));
+ connect(m_pRemark, SIGNAL(textChanged(const QString &)), this, SLOT(updateRemark(const QString &)));
}
|