Index: ossp-pkg/as/as-gui/as_assist.cpp RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/as_assist.cpp,v rcsdiff -q -kk '-r1.94' '-r1.95' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/as_assist.cpp,v' 2>/dev/null --- as_assist.cpp 2003/02/03 10:57:57 1.94 +++ as_assist.cpp 2003/02/03 11:15:48 1.95 @@ -964,10 +964,12 @@ void Titraqform::enableIface(bool bTurned) { // FIXME: Does not belong here, so relocate - if (!bTurned) // Turn off the interface - m_pMaintable->setNumRows(0); // Remove table data - else // Turn on the interface + if (bTurned) // Turn off the interface m_pDateedit->setDayfocus(); // Default focus is on day + else { // Turn on the interface + m_pMaintable->setNumRows(0); // Remove table data + m_pStatusedit->setPixmap(QPixmap(s_kpcStatvoid_xpm)); + } // Enable or disable the widgets m_pMaintable->setEnabled(bTurned); @@ -1001,7 +1003,6 @@ #endif // HAVE_ESOAP // Unconditional settings - this->updEdit(m_pMaintable->currentRow()); // Update edit controls m_pMaintable->setDirty(false); // Reset to clean data }