Index: ossp-pkg/as/as-gui/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/ChangeLog,v rcsdiff -q -kk '-r1.26' '-r1.27' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/ChangeLog,v' 2>/dev/null --- ChangeLog 2003/01/31 18:37:01 1.26 +++ ChangeLog 2003/01/31 18:48:57 1.27 @@ -2,6 +2,7 @@ 030131 Fix logic when calling saveFile, but returning in a dirty state Fix some logical combinations of open and new doc save operations + Renamed some visible widget text from to AS Accounting System 030130 Made day date section focus the default value Remove hackful zero date value, replace with current date Index: ossp-pkg/as/as-gui/TODO RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/TODO,v rcsdiff -q -kk '-r1.71' '-r1.72' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/TODO,v' 2>/dev/null --- TODO 2003/01/31 18:03:36 1.71 +++ TODO 2003/01/31 18:48:57 1.72 @@ -34,11 +34,6 @@ Win32 code in User class is only half written, and incomplete homedir Remove all exception raises from slot code -For immediate release ---------------------- -Name changes to as-gui throughout -Allow non alphanumerics in Remarks - Bugs (? = unverified) --------------------- Overidden paintCell() might not work when called asynchronously? Index: ossp-pkg/as/as-gui/as_gui.cpp RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/as_gui.cpp,v rcsdiff -q -kk '-r1.37' '-r1.38' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/as_gui.cpp,v' 2>/dev/null --- as_gui.cpp 2003/01/29 17:05:31 1.37 +++ as_gui.cpp 2003/01/31 18:48:57 1.38 @@ -70,11 +70,11 @@ // Postsetup manipulations m_pMaintable->setDirty(false); if (!kszName) - setName(trUtf8("Titraqform")); + setName(trUtf8("ASGuiapp")); resize(m_pPrefs->getNumber(TITRAQ_PREFFRAMEWIDTH, TITRAQ_DEFFRAMEWIDTH), m_pPrefs->getNumber(TITRAQ_PREFFRAMEHEIGHT, TITRAQ_DEFFRAMEHEIGHT)); connect(qApp, SIGNAL(aboutToQuit()), this, SLOT(savePrefs())); - setCaption("OSSP Titraq"); + setCaption("AS Accounting System"); // Rehydrate main window layout and doc positions QString Laystring = m_pPrefs->getString(TITRAQ_PREFFRAMELAY, NULL); // FIXME: Handle first case better 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.102' '-r1.103' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/as_slot.cpp,v' 2>/dev/null --- as_slot.cpp 2003/01/31 18:37:01 1.102 +++ as_slot.cpp 2003/01/31 18:48:57 1.103 @@ -1598,8 +1598,8 @@ // void Titraqform::aboutTitraq(void) { - QMessageBox *pCwmsg = new QMessageBox("OSSP titraq", - QObject::trUtf8("OSSP titraq is a time and task-based\n" + QMessageBox *pCwmsg = new QMessageBox("AS Accounting System", + QObject::trUtf8("As-gui is a time and task-based\n" "accounting system that acts as both a\n" "work-like punch card and time tracker.\n" "Development of titraq is sponsored by\n" @@ -1617,7 +1617,7 @@ // void Titraqform::aboutOSSP(void) { - QMessageBox *pOsspmsg = new QMessageBox("OSSP titraq", + QMessageBox *pOsspmsg = new QMessageBox("AS Accounting System", QObject::trUtf8("The open source software project (OSSP) is\n" "a collective effort aimed at implementing\n" "high-quality Unix software components,\n" @@ -1637,5 +1637,5 @@ // void Titraqform::aboutQt(void) { - QMessageBox::aboutQt(this, "OSSP titraq"); + QMessageBox::aboutQt(this, "AS Accounting System"); }