summaryrefslogtreecommitdiffstats
path: root/krecipes/src/widgets/ingredientcombobox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krecipes/src/widgets/ingredientcombobox.cpp')
-rw-r--r--krecipes/src/widgets/ingredientcombobox.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/krecipes/src/widgets/ingredientcombobox.cpp b/krecipes/src/widgets/ingredientcombobox.cpp
index a8492e5..f2a7bb5 100644
--- a/krecipes/src/widgets/ingredientcombobox.cpp
+++ b/krecipes/src/widgets/ingredientcombobox.cpp
@@ -24,7 +24,7 @@
IngredientComboBox::IngredientComboBox( bool b, TQWidget *parent, RecipeDB *db, const TQString &specialItem ) : KComboBox( b, parent ),
database( db ), loading_at(0), load_timer(new TQTimer(this)), m_specialItem(specialItem)
{
- connect( load_timer, SIGNAL(timeout()), SLOT(loadMore()) );
+ connect( load_timer, TQ_SIGNAL(timeout()), TQ_SLOT(loadMore()) );
completionObject()->setIgnoreCase(true);
}
@@ -56,8 +56,8 @@ void IngredientComboBox::reload()
setEditText( remember_text );
database->disconnect( this );
- connect( database, SIGNAL( ingredientCreated( const Element & ) ), SLOT( createIngredient( const Element & ) ) );
- connect( database, SIGNAL( ingredientRemoved( int ) ), SLOT( removeIngredient( int ) ) );
+ connect( database, TQ_SIGNAL( ingredientCreated( const Element & ) ), TQ_SLOT( createIngredient( const Element & ) ) );
+ connect( database, TQ_SIGNAL( ingredientRemoved( int ) ), TQ_SLOT( removeIngredient( int ) ) );
}
void IngredientComboBox::loadMore()
@@ -101,8 +101,8 @@ void IngredientComboBox::endLoad()
load_timer->stop();
//now we're ready to receive ingredient created/removed events from the database
- connect( database, SIGNAL( ingredientCreated( const Element & ) ), SLOT( createIngredient( const Element & ) ) );
- connect( database, SIGNAL( ingredientRemoved( int ) ), SLOT( removeIngredient( int ) ) );
+ connect( database, TQ_SIGNAL( ingredientCreated( const Element & ) ), TQ_SLOT( createIngredient( const Element & ) ) );
+ connect( database, TQ_SIGNAL( ingredientRemoved( int ) ), TQ_SLOT( removeIngredient( int ) ) );
}
int IngredientComboBox::id( int row )