summaryrefslogtreecommitdiffstats
path: root/krecipes/src/dialogs/prepmethodsdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krecipes/src/dialogs/prepmethodsdialog.cpp')
-rw-r--r--krecipes/src/dialogs/prepmethodsdialog.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/krecipes/src/dialogs/prepmethodsdialog.cpp b/krecipes/src/dialogs/prepmethodsdialog.cpp
index 4b5d5e0..e74c1e5 100644
--- a/krecipes/src/dialogs/prepmethodsdialog.cpp
+++ b/krecipes/src/dialogs/prepmethodsdialog.cpp
@@ -20,27 +20,27 @@
#include <klocale.h>
#include <kmessagebox.h>
-PrepMethodsDialog::PrepMethodsDialog( QWidget* parent, RecipeDB *db ) : QWidget( parent )
+PrepMethodsDialog::PrepMethodsDialog( 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() );
//PrepMethod List
prepMethodListView = new StdPrepMethodListView( this, database, true );
layout->addWidget( prepMethodListView );
//Buttons
- QVBoxLayout* vboxl = new QVBoxLayout( KDialog::spacingHint() );
+ TQVBoxLayout* vboxl = new TQVBoxLayout( KDialog::spacingHint() );
- newPrepMethodButton = new QPushButton( this );
+ newPrepMethodButton = new TQPushButton( this );
newPrepMethodButton->setText( i18n( "Create ..." ) );
newPrepMethodButton->setFlat( true );
vboxl->addWidget( newPrepMethodButton );
- removePrepMethodButton = new QPushButton( this );
+ removePrepMethodButton = new TQPushButton( this );
removePrepMethodButton->setText( i18n( "Delete" ) );
removePrepMethodButton->setFlat( true );
vboxl->addWidget( removePrepMethodButton );