Index: ossp-pkg/as/as-gui/TODO RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/TODO,v rcsdiff -q -kk '-r1.88' '-r1.89' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/TODO,v' 2>/dev/null --- TODO 2003/02/14 20:16:18 1.88 +++ TODO 2003/02/17 17:19:33 1.89 @@ -76,6 +76,9 @@ Make Simplefile class non-Qt specific Read and write karm format files with file extension detection Offer general option 'Use vim keymap' +Text revisions + Title case, sentence case, or lower case + Past tense, third person, style, usage... Screwey user notes ;-) ---------------------- 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.126' '-r1.127' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/as_slot.cpp,v' 2>/dev/null --- as_slot.cpp 2003/02/14 19:27:03 1.126 +++ as_slot.cpp 2003/02/17 17:19:33 1.127 @@ -58,9 +58,11 @@ #include "as_generic.h" // Generic classes #include "as_uuid.h" // UUID classes #include "as_datedit.h" // Derived from QDateEdit +#include "as_amount.h" // Derived from QTimeEdit #include "as_crc.h" // Useful Qualistring class #include "as_pref.h" // For Preferences class #include "as_panel.h" // For Prefpanel class +#include "as_reportpanel.h" // For Reportpanel class #include "as_sfile.h" // For Simplefile class #include "as_table.h" // For TiTable class @@ -1556,8 +1558,12 @@ // void Titraqform::genReport(void) { - Prototype Unimp; - Unimp.doMbox(); + Reportpanel *pReport = NULL; // The local report panel + + // Create a new local report window + pReport = new Reportpanel(this, "Locreportpanel"); + pReport->exec(); // Modal panel handler + delete pReport; // Dispose Panel object } //