Index: ossp-pkg/as/as-gui/TODO RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/TODO,v rcsdiff -q -kk '-r1.17' '-r1.18' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/TODO,v' 2>/dev/null --- TODO 2002/11/26 14:10:32 1.17 +++ TODO 2002/11/26 17:34:02 1.18 @@ -30,6 +30,10 @@ Remove magic numbers from cpp files to titconst like TITRAQ_INDEXREMARK Reduce dependence to STL by removing cout to QTextStream +Bugs +---- +Insert adds a row after selection; not possible to add before first row + Dreams ------ Index: ossp-pkg/as/as-gui/as_slot.cpp RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/as_slot.cpp,v rcsdiff -q -kk '-r1.15' '-r1.16' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/as_slot.cpp,v' 2>/dev/null --- as_slot.cpp 2002/11/26 17:23:51 1.15 +++ as_slot.cpp 2002/11/26 17:34:02 1.16 @@ -46,15 +46,9 @@ // void Titraqform::addEntry(void) { - Prototype Unimp; - Unimp.doMbox(); -// if (!pTable->text().isEmpty()) { -// QTableRow *pRow = new QTableRow; -// pRow->setText(0, NULL); -// pRow->setText(1, NULL); -// pRow->setText(2, NULL); -// pRow->setText(3, NULL); -// } + // Adds a new row to end of table and focuses to it + m_pMaintable->setNumRows(m_pMaintable->numRows() + 1); + m_pMaintable->setCurrentCell(m_pMaintable->numRows(), 0); } //