summaryrefslogtreecommitdiffstats
path: root/examples/sql/overview
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-01-26 23:32:43 -0600
committerTimothy Pearson <[email protected]>2012-01-26 23:32:43 -0600
commitea318d1431c89e647598c510c4245c6571aa5f46 (patch)
tree996d29b80c30d453dda86d1a23162d441628f169 /examples/sql/overview
parentaaf89d4b48f69c9293feb187db26362e550b5561 (diff)
downloadtqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz
tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip
Update to latest tqt3 automated conversion
Diffstat (limited to 'examples/sql/overview')
-rw-r--r--examples/sql/overview/basicbrowsing/main.cpp6
-rw-r--r--examples/sql/overview/basicbrowsing2/main.cpp6
-rw-r--r--examples/sql/overview/basicdatamanip/main.cpp6
-rw-r--r--examples/sql/overview/connect1/main.cpp4
-rw-r--r--examples/sql/overview/connection.cpp2
-rw-r--r--examples/sql/overview/create_connections/main.cpp4
-rw-r--r--examples/sql/overview/custom1/main.h20
-rw-r--r--examples/sql/overview/delete/main.cpp6
-rw-r--r--examples/sql/overview/extract/main.cpp6
-rw-r--r--examples/sql/overview/form1/main.cpp16
-rw-r--r--examples/sql/overview/form2/main.h18
-rw-r--r--examples/sql/overview/insert/main.cpp6
-rw-r--r--examples/sql/overview/insert2/main.cpp6
-rw-r--r--examples/sql/overview/navigating/main.cpp6
-rw-r--r--examples/sql/overview/order1/main.cpp6
-rw-r--r--examples/sql/overview/order2/main.cpp6
-rw-r--r--examples/sql/overview/retrieve1/main.cpp6
-rw-r--r--examples/sql/overview/retrieve2/main.cpp6
-rw-r--r--examples/sql/overview/subclass1/main.cpp8
-rw-r--r--examples/sql/overview/subclass2/main.cpp2
-rw-r--r--examples/sql/overview/subclass2/main.h6
-rw-r--r--examples/sql/overview/subclass3/main.cpp2
-rw-r--r--examples/sql/overview/subclass3/main.h6
-rw-r--r--examples/sql/overview/subclass4/main.cpp2
-rw-r--r--examples/sql/overview/subclass4/main.h6
-rw-r--r--examples/sql/overview/subclass5/main.cpp2
-rw-r--r--examples/sql/overview/subclass5/main.h8
-rw-r--r--examples/sql/overview/table1/main.cpp8
-rw-r--r--examples/sql/overview/table2/main.cpp8
-rw-r--r--examples/sql/overview/table3/main.cpp2
-rw-r--r--examples/sql/overview/table3/main.h14
-rw-r--r--examples/sql/overview/table4/main.h18
-rw-r--r--examples/sql/overview/update/main.cpp6
33 files changed, 117 insertions, 117 deletions
diff --git a/examples/sql/overview/basicbrowsing/main.cpp b/examples/sql/overview/basicbrowsing/main.cpp
index a63182444..9244d2a93 100644
--- a/examples/sql/overview/basicbrowsing/main.cpp
+++ b/examples/sql/overview/basicbrowsing/main.cpp
@@ -7,9 +7,9 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlquery.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlquery.h>
#include "../connection.h"
int main( int argc, char *argv[] )
diff --git a/examples/sql/overview/basicbrowsing2/main.cpp b/examples/sql/overview/basicbrowsing2/main.cpp
index 5f7cbcb9f..79b2b17db 100644
--- a/examples/sql/overview/basicbrowsing2/main.cpp
+++ b/examples/sql/overview/basicbrowsing2/main.cpp
@@ -7,9 +7,9 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlquery.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlquery.h>
#include "../connection.h"
int main( int argc, char *argv[] )
diff --git a/examples/sql/overview/basicdatamanip/main.cpp b/examples/sql/overview/basicdatamanip/main.cpp
index 7777f9813..ed422afa7 100644
--- a/examples/sql/overview/basicdatamanip/main.cpp
+++ b/examples/sql/overview/basicdatamanip/main.cpp
@@ -7,9 +7,9 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlquery.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlquery.h>
#include "../connection.h"
bool createConnections();
diff --git a/examples/sql/overview/connect1/main.cpp b/examples/sql/overview/connect1/main.cpp
index 16f3eeab2..ea958e3ae 100644
--- a/examples/sql/overview/connect1/main.cpp
+++ b/examples/sql/overview/connect1/main.cpp
@@ -7,8 +7,8 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
#include "../connection.h"
diff --git a/examples/sql/overview/connection.cpp b/examples/sql/overview/connection.cpp
index 0bbc7116c..ee49b1a2a 100644
--- a/examples/sql/overview/connection.cpp
+++ b/examples/sql/overview/connection.cpp
@@ -6,7 +6,7 @@
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
-#include <qsqldatabase.h>
+#include <ntqsqldatabase.h>
#include "connection.h"
bool createConnections()
diff --git a/examples/sql/overview/create_connections/main.cpp b/examples/sql/overview/create_connections/main.cpp
index c4b3a9b71..dc1042b7b 100644
--- a/examples/sql/overview/create_connections/main.cpp
+++ b/examples/sql/overview/create_connections/main.cpp
@@ -7,8 +7,8 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
#include "../connection.h"
int main( int argc, char *argv[] )
diff --git a/examples/sql/overview/custom1/main.h b/examples/sql/overview/custom1/main.h
index 191672245..3ffd1c1c6 100644
--- a/examples/sql/overview/custom1/main.h
+++ b/examples/sql/overview/custom1/main.h
@@ -7,16 +7,16 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qdialog.h>
-#include <qlabel.h>
-#include <qlayout.h>
-#include <qlineedit.h>
-#include <qpushbutton.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
-#include <qsqlform.h>
-#include <qsqlpropertymap.h>
+#include <ntqapplication.h>
+#include <ntqdialog.h>
+#include <ntqlabel.h>
+#include <ntqlayout.h>
+#include <ntqlineedit.h>
+#include <ntqpushbutton.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
+#include <ntqsqlform.h>
+#include <ntqsqlpropertymap.h>
#include "../connection.h"
class CustomEdit : public TQLineEdit
diff --git a/examples/sql/overview/delete/main.cpp b/examples/sql/overview/delete/main.cpp
index ebe2108fa..9ade50bab 100644
--- a/examples/sql/overview/delete/main.cpp
+++ b/examples/sql/overview/delete/main.cpp
@@ -7,9 +7,9 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
#include "../connection.h"
int main( int argc, char *argv[] )
diff --git a/examples/sql/overview/extract/main.cpp b/examples/sql/overview/extract/main.cpp
index 191601c82..8a6606d21 100644
--- a/examples/sql/overview/extract/main.cpp
+++ b/examples/sql/overview/extract/main.cpp
@@ -7,9 +7,9 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
#include "../connection.h"
int main( int argc, char *argv[] )
diff --git a/examples/sql/overview/form1/main.cpp b/examples/sql/overview/form1/main.cpp
index 8f1c05b0e..1c71bec12 100644
--- a/examples/sql/overview/form1/main.cpp
+++ b/examples/sql/overview/form1/main.cpp
@@ -7,14 +7,14 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qdialog.h>
-#include <qlabel.h>
-#include <qlayout.h>
-#include <qlineedit.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
-#include <qsqlform.h>
+#include <ntqapplication.h>
+#include <ntqdialog.h>
+#include <ntqlabel.h>
+#include <ntqlayout.h>
+#include <ntqlineedit.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
+#include <ntqsqlform.h>
#include "../connection.h"
class FormDialog : public TQDialog
diff --git a/examples/sql/overview/form2/main.h b/examples/sql/overview/form2/main.h
index 31a0f66cd..ddd91039e 100644
--- a/examples/sql/overview/form2/main.h
+++ b/examples/sql/overview/form2/main.h
@@ -7,15 +7,15 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qdialog.h>
-#include <qlabel.h>
-#include <qlayout.h>
-#include <qlineedit.h>
-#include <qpushbutton.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
-#include <qsqlform.h>
+#include <ntqapplication.h>
+#include <ntqdialog.h>
+#include <ntqlabel.h>
+#include <ntqlayout.h>
+#include <ntqlineedit.h>
+#include <ntqpushbutton.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
+#include <ntqsqlform.h>
#include "../connection.h"
class FormDialog : public TQDialog
diff --git a/examples/sql/overview/insert/main.cpp b/examples/sql/overview/insert/main.cpp
index 47276819f..0f2c7b866 100644
--- a/examples/sql/overview/insert/main.cpp
+++ b/examples/sql/overview/insert/main.cpp
@@ -7,9 +7,9 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
#include "../connection.h"
int main( int argc, char *argv[] )
diff --git a/examples/sql/overview/insert2/main.cpp b/examples/sql/overview/insert2/main.cpp
index 800a94464..5f5ee6620 100644
--- a/examples/sql/overview/insert2/main.cpp
+++ b/examples/sql/overview/insert2/main.cpp
@@ -7,9 +7,9 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
#include "../connection.h"
int main( int argc, char *argv[] )
diff --git a/examples/sql/overview/navigating/main.cpp b/examples/sql/overview/navigating/main.cpp
index 519aa2698..a2e773c1b 100644
--- a/examples/sql/overview/navigating/main.cpp
+++ b/examples/sql/overview/navigating/main.cpp
@@ -7,9 +7,9 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlquery.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlquery.h>
#include "../connection.h"
int main( int argc, char *argv[] )
diff --git a/examples/sql/overview/order1/main.cpp b/examples/sql/overview/order1/main.cpp
index 7b185d459..89d7658de 100644
--- a/examples/sql/overview/order1/main.cpp
+++ b/examples/sql/overview/order1/main.cpp
@@ -7,9 +7,9 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
#include "../connection.h"
int main( int argc, char *argv[] )
diff --git a/examples/sql/overview/order2/main.cpp b/examples/sql/overview/order2/main.cpp
index 9165d2a9f..2dfba8315 100644
--- a/examples/sql/overview/order2/main.cpp
+++ b/examples/sql/overview/order2/main.cpp
@@ -7,9 +7,9 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
#include "../connection.h"
int main( int argc, char *argv[] )
diff --git a/examples/sql/overview/retrieve1/main.cpp b/examples/sql/overview/retrieve1/main.cpp
index 956f8a17f..1b7e11778 100644
--- a/examples/sql/overview/retrieve1/main.cpp
+++ b/examples/sql/overview/retrieve1/main.cpp
@@ -7,9 +7,9 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlquery.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlquery.h>
#include "../connection.h"
int main( int argc, char *argv[] )
diff --git a/examples/sql/overview/retrieve2/main.cpp b/examples/sql/overview/retrieve2/main.cpp
index 4cb0150be..ecb59296e 100644
--- a/examples/sql/overview/retrieve2/main.cpp
+++ b/examples/sql/overview/retrieve2/main.cpp
@@ -7,9 +7,9 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
#include "../connection.h"
int main( int argc, char *argv[] )
diff --git a/examples/sql/overview/subclass1/main.cpp b/examples/sql/overview/subclass1/main.cpp
index 476ebd898..97b33c473 100644
--- a/examples/sql/overview/subclass1/main.cpp
+++ b/examples/sql/overview/subclass1/main.cpp
@@ -7,10 +7,10 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
-#include <qdatatable.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
+#include <ntqdatatable.h>
#include "../connection.h"
int main( int argc, char *argv[] )
diff --git a/examples/sql/overview/subclass2/main.cpp b/examples/sql/overview/subclass2/main.cpp
index f7f9bd91f..de4d0d7e4 100644
--- a/examples/sql/overview/subclass2/main.cpp
+++ b/examples/sql/overview/subclass2/main.cpp
@@ -8,7 +8,7 @@
*****************************************************************************/
#include "main.h"
-#include <qdatatable.h>
+#include <ntqdatatable.h>
InvoiceItemCursor::InvoiceItemCursor() :
TQSqlCursor( "invoiceitem" )
diff --git a/examples/sql/overview/subclass2/main.h b/examples/sql/overview/subclass2/main.h
index 020ecbff7..421b634d6 100644
--- a/examples/sql/overview/subclass2/main.h
+++ b/examples/sql/overview/subclass2/main.h
@@ -7,9 +7,9 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
#include "../connection.h"
class TQSqlRecord;
diff --git a/examples/sql/overview/subclass3/main.cpp b/examples/sql/overview/subclass3/main.cpp
index db77b855e..7f6f7f567 100644
--- a/examples/sql/overview/subclass3/main.cpp
+++ b/examples/sql/overview/subclass3/main.cpp
@@ -8,7 +8,7 @@
*****************************************************************************/
#include "main.h"
-#include <qdatatable.h>
+#include <ntqdatatable.h>
InvoiceItemCursor::InvoiceItemCursor() :
TQSqlCursor( "invoiceitem" )
diff --git a/examples/sql/overview/subclass3/main.h b/examples/sql/overview/subclass3/main.h
index 06b0a1734..8c68eb4df 100644
--- a/examples/sql/overview/subclass3/main.h
+++ b/examples/sql/overview/subclass3/main.h
@@ -7,9 +7,9 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
#include "../connection.h"
class TQSqlRecord;
diff --git a/examples/sql/overview/subclass4/main.cpp b/examples/sql/overview/subclass4/main.cpp
index a96870e4d..0ea60afcb 100644
--- a/examples/sql/overview/subclass4/main.cpp
+++ b/examples/sql/overview/subclass4/main.cpp
@@ -8,7 +8,7 @@
*****************************************************************************/
#include "main.h"
-#include <qdatatable.h>
+#include <ntqdatatable.h>
InvoiceItemCursor::InvoiceItemCursor() :
TQSqlCursor( "invoiceitem" )
diff --git a/examples/sql/overview/subclass4/main.h b/examples/sql/overview/subclass4/main.h
index 06b0a1734..8c68eb4df 100644
--- a/examples/sql/overview/subclass4/main.h
+++ b/examples/sql/overview/subclass4/main.h
@@ -7,9 +7,9 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
#include "../connection.h"
class TQSqlRecord;
diff --git a/examples/sql/overview/subclass5/main.cpp b/examples/sql/overview/subclass5/main.cpp
index 260ddaf2a..afb616f67 100644
--- a/examples/sql/overview/subclass5/main.cpp
+++ b/examples/sql/overview/subclass5/main.cpp
@@ -8,7 +8,7 @@
*****************************************************************************/
#include "main.h"
-#include <qdatatable.h>
+#include <ntqdatatable.h>
InvoiceItemCursor::InvoiceItemCursor() :
TQSqlCursor( "invoiceitem" )
diff --git a/examples/sql/overview/subclass5/main.h b/examples/sql/overview/subclass5/main.h
index 6f3a0edca..95e30e415 100644
--- a/examples/sql/overview/subclass5/main.h
+++ b/examples/sql/overview/subclass5/main.h
@@ -7,10 +7,10 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qdatetime.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
+#include <ntqapplication.h>
+#include <ntqdatetime.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
#include "../connection.h"
class TQSqlRecord;
diff --git a/examples/sql/overview/table1/main.cpp b/examples/sql/overview/table1/main.cpp
index c0041a9a2..118e73f6d 100644
--- a/examples/sql/overview/table1/main.cpp
+++ b/examples/sql/overview/table1/main.cpp
@@ -7,10 +7,10 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
-#include <qdatatable.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
+#include <ntqdatatable.h>
#include "../connection.h"
int main( int argc, char *argv[] )
diff --git a/examples/sql/overview/table2/main.cpp b/examples/sql/overview/table2/main.cpp
index 79c9993f9..4c6794c29 100644
--- a/examples/sql/overview/table2/main.cpp
+++ b/examples/sql/overview/table2/main.cpp
@@ -7,10 +7,10 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
-#include <qdatatable.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
+#include <ntqdatatable.h>
#include "../connection.h"
int main( int argc, char *argv[] )
diff --git a/examples/sql/overview/table3/main.cpp b/examples/sql/overview/table3/main.cpp
index 4b9f2050e..a105239c9 100644
--- a/examples/sql/overview/table3/main.cpp
+++ b/examples/sql/overview/table3/main.cpp
@@ -8,7 +8,7 @@
*****************************************************************************/
#include "main.h"
-#include <qdatatable.h>
+#include <ntqdatatable.h>
StatusPicker::StatusPicker( TQWidget *parent, const char *name )
: TQComboBox( parent, name )
diff --git a/examples/sql/overview/table3/main.h b/examples/sql/overview/table3/main.h
index dd0d8d095..e93e6ee7b 100644
--- a/examples/sql/overview/table3/main.h
+++ b/examples/sql/overview/table3/main.h
@@ -7,13 +7,13 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qcombobox.h>
-#include <qmap.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
-#include <qsqleditorfactory.h>
-#include <qsqlpropertymap.h>
+#include <ntqapplication.h>
+#include <ntqcombobox.h>
+#include <ntqmap.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
+#include <ntqsqleditorfactory.h>
+#include <ntqsqlpropertymap.h>
#include "../connection.h"
class StatusPicker : public TQComboBox
diff --git a/examples/sql/overview/table4/main.h b/examples/sql/overview/table4/main.h
index 59edfc9d5..ecd878b1c 100644
--- a/examples/sql/overview/table4/main.h
+++ b/examples/sql/overview/table4/main.h
@@ -7,15 +7,15 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qcombobox.h>
-#include <qmap.h>
-#include <qpainter.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
-#include <qsqleditorfactory.h>
-#include <qsqlpropertymap.h>
-#include <qdatatable.h>
+#include <ntqapplication.h>
+#include <ntqcombobox.h>
+#include <ntqmap.h>
+#include <ntqpainter.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
+#include <ntqsqleditorfactory.h>
+#include <ntqsqlpropertymap.h>
+#include <ntqdatatable.h>
#include "../connection.h"
class StatusPicker : public TQComboBox
diff --git a/examples/sql/overview/update/main.cpp b/examples/sql/overview/update/main.cpp
index 207702c06..905e98107 100644
--- a/examples/sql/overview/update/main.cpp
+++ b/examples/sql/overview/update/main.cpp
@@ -7,9 +7,9 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qsqldatabase.h>
-#include <qsqlcursor.h>
+#include <ntqapplication.h>
+#include <ntqsqldatabase.h>
+#include <ntqsqlcursor.h>
#include "../connection.h"
int main( int argc, char *argv[] )