summaryrefslogtreecommitdiffstats
path: root/krecipes/src/dialogs/ingredientmatcherdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krecipes/src/dialogs/ingredientmatcherdialog.cpp')
-rw-r--r--krecipes/src/dialogs/ingredientmatcherdialog.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/krecipes/src/dialogs/ingredientmatcherdialog.cpp b/krecipes/src/dialogs/ingredientmatcherdialog.cpp
index dc823b0..5662d21 100644
--- a/krecipes/src/dialogs/ingredientmatcherdialog.cpp
+++ b/krecipes/src/dialogs/ingredientmatcherdialog.cpp
@@ -122,13 +122,13 @@ IngredientMatcherDialog::IngredientMatcherDialog( TQWidget *parent, RecipeDB *db
dialogLayout->addWidget(buttonBox);
// Connect signals & slots
- connect ( okButton, SIGNAL( clicked() ), this, SLOT( findRecipes() ) );
- connect ( clearButton, SIGNAL( clicked() ), recipeListView->listView(), SLOT( clear() ) );
- connect ( clearButton, SIGNAL( clicked() ), this, SLOT( unselectIngredients() ) );
- connect ( actionHandler, SIGNAL( recipeSelected( int, int ) ), SIGNAL( recipeSelected( int, int ) ) );
- connect( addButton, SIGNAL( clicked() ), this, SLOT( addIngredient() ) );
- connect( removeButton, SIGNAL( clicked() ), this, SLOT( removeIngredient() ) );
- connect( ingListView->listView(), SIGNAL( doubleClicked( TQListViewItem*, const TQPoint &, int ) ), SLOT( itemRenamed( TQListViewItem*, const TQPoint &, int ) ) );
+ connect ( okButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( findRecipes() ) );
+ connect ( clearButton, TQ_SIGNAL( clicked() ), recipeListView->listView(), TQ_SLOT( clear() ) );
+ connect ( clearButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( unselectIngredients() ) );
+ connect ( actionHandler, TQ_SIGNAL( recipeSelected( int, int ) ), TQ_SIGNAL( recipeSelected( int, int ) ) );
+ connect( addButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( addIngredient() ) );
+ connect( removeButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( removeIngredient() ) );
+ connect( ingListView->listView(), TQ_SIGNAL( doubleClicked( TQListViewItem*, const TQPoint &, int ) ), TQ_SLOT( itemRenamed( TQListViewItem*, const TQPoint &, int ) ) );
}
IngredientMatcherDialog::~IngredientMatcherDialog()