From ea318d1431c89e647598c510c4245c6571aa5f46 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 26 Jan 2012 23:32:43 -0600 Subject: Update to latest tqt3 automated conversion --- doc/html/sql-overview-subclass2-main-cpp.html | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'doc/html/sql-overview-subclass2-main-cpp.html') diff --git a/doc/html/sql-overview-subclass2-main-cpp.html b/doc/html/sql-overview-subclass2-main-cpp.html index 8aafd5a88..db5c6887b 100644 --- a/doc/html/sql-overview-subclass2-main-cpp.html +++ b/doc/html/sql-overview-subclass2-main-cpp.html @@ -43,10 +43,10 @@ body { background: #ffffff; color: black; } *****************************************************************************/ #include "main.h" -#include <qdatatable.h> +#include <ntqdatatable.h> InvoiceItemCursor::InvoiceItemCursor() : - TQSqlCursor( "invoiceitem" ) + TQSqlCursor( "invoiceitem" ) { // NOOP } @@ -54,23 +54,23 @@ body { background: #ffffff; color: black; } int main( int argc, char *argv[] ) { - TQApplication app( argc, argv ); + TQApplication app( argc, argv ); if ( createConnections() ) { InvoiceItemCursor invoiceItemCursor; - TQDataTable *invoiceItemTable = new TQDataTable( &invoiceItemCursor ); + TQDataTable *invoiceItemTable = new TQDataTable( &invoiceItemCursor ); - app.setMainWidget( invoiceItemTable ); + app.setMainWidget( invoiceItemTable ); - invoiceItemTable->addColumn( "pricesid", "PriceID" ); - invoiceItemTable->addColumn( "quantity", "Quantity" ); - invoiceItemTable->addColumn( "paiddate", "Paid" ); + invoiceItemTable->addColumn( "pricesid", "PriceID" ); + invoiceItemTable->addColumn( "quantity", "Quantity" ); + invoiceItemTable->addColumn( "paiddate", "Paid" ); - invoiceItemTable->refresh(); - invoiceItemTable->show(); + invoiceItemTable->refresh(); + invoiceItemTable->show(); - return app.exec(); + return app.exec(); } return 1; -- cgit v1.2.1