--- as_assist.cpp 2002/11/26 22:22:53 1.28
+++ as_assist.cpp 2002/11/26 23:26:07 1.29
@@ -426,7 +426,6 @@
// Table update signals
connect(m_pMaintable, SIGNAL(currentChanged(int, int)), this, SLOT(updEdit(int, int)));
-// connect(m_pMaintable, SIGNAL(clicked(int, int, int, const QPoint&)), this, SLOT(updEdit(int, int)));
// connect(m_pMaintable, SIGNAL(doubleClicked(int, int, int, const QPoint&)), this, SLOT(updEdit(int, int)));
// connect(m_pMaintable, SIGNAL(valueChanged(int, int)), this, SLOT(tableChanged(int, int)));
}
@@ -457,7 +456,7 @@
QWhatsThis::add(m_pDateedit, kszDateedit);
// Make the start time selector
- m_pStarttime = new QTimeEdit(QTime::currentTime(), m_pCenframe, "StartTime");
+ m_pStarttime = new QTimeEdit(m_pCenframe, "StartTime");
if (m_pStarttime == NULL) // Sanity check
throw Genexcept("Main window start time creation failed."); // Spew errors
@@ -474,7 +473,7 @@
QWhatsThis::add(m_pStarttime, kszStarttime);
// Make the end time selector
- m_pEndtime = new QTimeEdit(QTime::currentTime(), m_pCenframe, "EndTime");
+ m_pEndtime = new QTimeEdit(m_pCenframe, "EndTime");
if (m_pEndtime == NULL) // Sanity check
throw Genexcept("Main window end time creation failed."); // Spew errors
@@ -575,9 +574,9 @@
QWhatsThis::add(m_pConfirmbutton, kszConfirmtext);
// // Signals
-// m_pDateedit->valueChanged(const QDate &date);
-// m_pStarttime->valueChanged(const QTime &time);
-// m_pEndtime->valueChanged(const QTime &time);
-// m_pAmount->valueChanged(int value);
-// m_pTasks->textChanged(const QString &string);
+// 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()));
}
|