summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/tools/designer/examples/book/book5/book.ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'tqtinterface/qt4/tools/designer/examples/book/book5/book.ui.h')
-rw-r--r--tqtinterface/qt4/tools/designer/examples/book/book5/book.ui.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/tqtinterface/qt4/tools/designer/examples/book/book5/book.ui.h b/tqtinterface/qt4/tools/designer/examples/book/book5/book.ui.h
deleted file mode 100644
index c41fa17..0000000
--- a/tqtinterface/qt4/tools/designer/examples/book/book5/book.ui.h
+++ /dev/null
@@ -1,23 +0,0 @@
-void BookForm::editClicked()
-{
- EditBookForm *dialog = new EditBookForm( this, "Edit Book Form", TRUE );
- dialog->exec();
- delete dialog;
-}
-
-void BookForm::newCurrentAuthor( TQSqlRecord *author )
-{
- BookDataTable->setFilter( "authorid=" + author->value( "id" ).toString() );
- BookDataTable->refresh();
-}
-
-void BookForm::primeInsertAuthor( TQSqlRecord *buffer )
-{
- TQSqlQuery query;
- query.exec( "UPDATE sequence SET sequence = sequence + 1 WHERE tablename='author';" );
- query.exec( "SELECT sequence FROM sequence WHERE tablename='author';" );
- if ( query.next() ) {
- buffer->setValue( "id", query.value( 0 ) );
- }
-}
-