summaryrefslogtreecommitdiffstats
path: root/krecipes/src/dialogs/categorieseditordialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krecipes/src/dialogs/categorieseditordialog.cpp')
-rw-r--r--krecipes/src/dialogs/categorieseditordialog.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/krecipes/src/dialogs/categorieseditordialog.cpp b/krecipes/src/dialogs/categorieseditordialog.cpp
index 4c767a6..d4d7195 100644
--- a/krecipes/src/dialogs/categorieseditordialog.cpp
+++ b/krecipes/src/dialogs/categorieseditordialog.cpp
@@ -21,27 +21,27 @@
#include "createcategorydialog.h"
#include "backends/recipedb.h"
-CategoriesEditorDialog::CategoriesEditorDialog( QWidget* parent, RecipeDB *db ) : QWidget( parent )
+CategoriesEditorDialog::CategoriesEditorDialog( 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() );
//Category List
categoryListView = new StdCategoryListView( this, database, true );
layout->addWidget( categoryListView );
//Buttons
- QVBoxLayout* vboxl = new QVBoxLayout( KDialog::spacingHint() );
+ TQVBoxLayout* vboxl = new TQVBoxLayout( KDialog::spacingHint() );
- newCategoryButton = new QPushButton( this );
+ newCategoryButton = new TQPushButton( this );
newCategoryButton->setText( i18n( "Create ..." ) );
newCategoryButton->setFlat( true );
vboxl->addWidget( newCategoryButton );
- removeCategoryButton = new QPushButton( this );
+ removeCategoryButton = new TQPushButton( this );
removeCategoryButton->setText( i18n( "Delete" ) );
removeCategoryButton->setFlat( true );
vboxl->addWidget( removeCategoryButton );