diff options
Diffstat (limited to 'examples/demo/sql/connect.ui.h')
-rw-r--r-- | examples/demo/sql/connect.ui.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/demo/sql/connect.ui.h b/examples/demo/sql/connect.ui.h new file mode 100644 index 000000000..cc1bce9bf --- /dev/null +++ b/examples/demo/sql/connect.ui.h @@ -0,0 +1,20 @@ +/**************************************************************************** +** ui.h extension file, included from the uic-generated form implementation. +** +** If you wish to add, delete or rename slots use TQt Designer which will +** update this file, preserving your code. Create an init() slot in place of +** a constructor, and a destroy() slot in place of a destructor. +*****************************************************************************/ + +#include <qsqldatabase.h> + +void ConnectDialog::init() +{ + comboDriver->clear(); + comboDriver->insertStringList( TQSqlDatabase::drivers() ); +} + +void ConnectDialog::destroy() +{ + +} |