summaryrefslogtreecommitdiffstats
path: root/krecipes/src/dialogs/authorsdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krecipes/src/dialogs/authorsdialog.cpp')
-rw-r--r--krecipes/src/dialogs/authorsdialog.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/krecipes/src/dialogs/authorsdialog.cpp b/krecipes/src/dialogs/authorsdialog.cpp
index 8015f3f..1622dfa 100644
--- a/krecipes/src/dialogs/authorsdialog.cpp
+++ b/krecipes/src/dialogs/authorsdialog.cpp
@@ -19,27 +19,27 @@
#include <klocale.h>
#include <kmessagebox.h>
-AuthorsDialog::AuthorsDialog( QWidget* parent, RecipeDB *db ) : QWidget( parent )
+AuthorsDialog::AuthorsDialog( TQWidget* parent, RecipeDB *db ) : TQWidget( parent )
{
// Store pointer to database
database = db;
- QHBoxLayout* layout = new QHBoxLayout( this, KDialog::marginHint(), KDialog::spacingHint() );
+ TQHBoxLayout* layout = new TQHBoxLayout( this, KDialog::marginHint(), KDialog::spacingHint() );
//Author List
authorListView = new StdAuthorListView( this, database, true );
layout->addWidget( authorListView );
//Buttons
- QVBoxLayout* vboxl = new QVBoxLayout( KDialog::spacingHint() );
+ TQVBoxLayout* vboxl = new TQVBoxLayout( KDialog::spacingHint() );
- newAuthorButton = new QPushButton( this );
+ newAuthorButton = new TQPushButton( this );
newAuthorButton->setText( i18n( "Create ..." ) );
newAuthorButton->setFlat( true );
vboxl->addWidget( newAuthorButton );
- removeAuthorButton = new QPushButton( this );
+ removeAuthorButton = new TQPushButton( this );
removeAuthorButton->setText( i18n( "Delete" ) );
removeAuthorButton->setFlat( true );
vboxl->addWidget( removeAuthorButton );