summaryrefslogtreecommitdiffstats
path: root/krecipes/src/widgets/categorycombobox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krecipes/src/widgets/categorycombobox.cpp')
-rw-r--r--krecipes/src/widgets/categorycombobox.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/krecipes/src/widgets/categorycombobox.cpp b/krecipes/src/widgets/categorycombobox.cpp
index ed9437d..2b97f56 100644
--- a/krecipes/src/widgets/categorycombobox.cpp
+++ b/krecipes/src/widgets/categorycombobox.cpp
@@ -27,10 +27,10 @@ CategoryComboBox::CategoryComboBox( TQWidget *parent, RecipeDB *db ) : KComboBox
database( db ),
m_offset(0)
{
- connect( database, SIGNAL( categoryCreated( const Element &, int ) ), SLOT( createCategory( const Element &, int ) ) );
- connect( database, SIGNAL( categoryRemoved( int ) ), SLOT( removeCategory( int ) ) );
- connect( database, SIGNAL( categoryModified( const Element & ) ), SLOT( modifyCategory( const Element & ) ) );
- connect( database, SIGNAL( categoriesMerged( int, int ) ), SLOT( mergeCategories( int, int ) ) );
+ connect( database, TQ_SIGNAL( categoryCreated( const Element &, int ) ), TQ_SLOT( createCategory( const Element &, int ) ) );
+ connect( database, TQ_SIGNAL( categoryRemoved( int ) ), TQ_SLOT( removeCategory( int ) ) );
+ connect( database, TQ_SIGNAL( categoryModified( const Element & ) ), TQ_SLOT( modifyCategory( const Element & ) ) );
+ connect( database, TQ_SIGNAL( categoriesMerged( int, int ) ), TQ_SLOT( mergeCategories( int, int ) ) );
// Insert default "All Categories" (row 0, which will be translated to -1 as category in the filtering process)
// the rest of the items are loaded when needed in order to significantly speed up startup