summaryrefslogtreecommitdiffstats
path: root/krecipes/src/widgets/unitcombobox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krecipes/src/widgets/unitcombobox.cpp')
-rw-r--r--krecipes/src/widgets/unitcombobox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/krecipes/src/widgets/unitcombobox.cpp b/krecipes/src/widgets/unitcombobox.cpp
index ec4494d..40b5272 100644
--- a/krecipes/src/widgets/unitcombobox.cpp
+++ b/krecipes/src/widgets/unitcombobox.cpp
@@ -22,8 +22,8 @@
UnitComboBox::UnitComboBox( TQWidget *parent, RecipeDB *db, Unit::Type type ) : KComboBox( parent ),
database( db ), m_type(type)
{
- connect( database, SIGNAL( unitCreated( const Unit & ) ), SLOT( createUnit( const Unit & ) ) );
- connect( database, SIGNAL( unitRemoved( int ) ), SLOT( removeUnit( int ) ) );
+ connect( database, TQ_SIGNAL( unitCreated( const Unit & ) ), TQ_SLOT( createUnit( const Unit & ) ) );
+ connect( database, TQ_SIGNAL( unitRemoved( int ) ), TQ_SLOT( removeUnit( int ) ) );
}
void UnitComboBox::popup()