summaryrefslogtreecommitdiffstats
path: root/krecipes/src/widgets/krelistview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krecipes/src/widgets/krelistview.cpp')
-rw-r--r--krecipes/src/widgets/krelistview.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/krecipes/src/widgets/krelistview.cpp b/krecipes/src/widgets/krelistview.cpp
index 07cc9f7..3c06216 100644
--- a/krecipes/src/widgets/krelistview.cpp
+++ b/krecipes/src/widgets/krelistview.cpp
@@ -60,8 +60,8 @@ KreListView::KreListView( TQWidget *parent, const TQString &title, bool filter,
embeddedWidget->reparent( header, TQPoint( 0, 0 ) );
//Connect Signals & Slots
if ( filter ) {
- connect( filterEdit, SIGNAL( textChanged( const TQString& ) ), SIGNAL( textChanged(const TQString&) ) );
- connect( this, SIGNAL( textChanged( const TQString& ) ), SLOT( filter( const TQString& ) ) );
+ connect( filterEdit, TQ_SIGNAL( textChanged( const TQString& ) ), TQ_SIGNAL( textChanged(const TQString&) ) );
+ connect( this, TQ_SIGNAL( textChanged( const TQString& ) ), TQ_SLOT( filter( const TQString& ) ) );
}
}
@@ -101,15 +101,15 @@ void KreListView::refilter()
void KreListView::setCustomFilter( TQObject *receiver, const char *slot )
{
- connect( this, SIGNAL( textChanged( const TQString& ) ), receiver, slot );
+ connect( this, TQ_SIGNAL( textChanged( const TQString& ) ), receiver, slot );
}
void KreListView::setListView( DBListViewBase *list_view )
{
delete list;
- connect( list_view, SIGNAL( nextGroupLoaded() ), SLOT( refilter() ) );
- connect( list_view, SIGNAL( prevGroupLoaded() ), SLOT( refilter() ) );
+ connect( list_view, TQ_SIGNAL( nextGroupLoaded() ), TQ_SLOT( refilter() ) );
+ connect( list_view, TQ_SIGNAL( prevGroupLoaded() ), TQ_SLOT( refilter() ) );
list = list_view;
}