ossp-pkg/as/as-gui/as_slot.cpp 1.126 -> 1.127
--- 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
}
//
|
|