summaryrefslogtreecommitdiffstats
path: root/tdeui/kiconviewsearchline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeui/kiconviewsearchline.cpp')
-rw-r--r--tdeui/kiconviewsearchline.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/tdeui/kiconviewsearchline.cpp b/tdeui/kiconviewsearchline.cpp
index 77b8082ea..f853221ff 100644
--- a/tdeui/kiconviewsearchline.cpp
+++ b/tdeui/kiconviewsearchline.cpp
@@ -152,15 +152,15 @@ void TDEIconViewSearchLine::setCaseSensitive( bool cs )
void TDEIconViewSearchLine::setIconView( TQIconView *iv )
{
if ( d->iconView != NULL )
- disconnect( d->iconView, TQT_SIGNAL( destroyed() ),
- this, TQT_SLOT( iconViewDeleted() ) );
+ disconnect( d->iconView, TQ_SIGNAL( destroyed() ),
+ this, TQ_SLOT( iconViewDeleted() ) );
d->iconView = iv;
if ( iv != NULL )
{
- connect( d->iconView, TQT_SIGNAL( destroyed() ),
- this, TQT_SLOT( iconViewDeleted() ) );
+ connect( d->iconView, TQ_SIGNAL( destroyed() ),
+ this, TQ_SLOT( iconViewDeleted() ) );
setEnabled( true );
}
else
@@ -190,13 +190,13 @@ void TDEIconViewSearchLine::init( TQIconView *iconView )
d->iconView = iconView;
- connect( this, TQT_SIGNAL( textChanged( const TQString & ) ),
- this, TQT_SLOT( queueSearch( const TQString & ) ) );
+ connect( this, TQ_SIGNAL( textChanged( const TQString & ) ),
+ this, TQ_SLOT( queueSearch( const TQString & ) ) );
if ( iconView != NULL )
{
- connect( iconView, TQT_SIGNAL( destroyed() ),
- this, TQT_SLOT( iconViewDeleted() ) );
+ connect( iconView, TQ_SIGNAL( destroyed() ),
+ this, TQ_SLOT( iconViewDeleted() ) );
setEnabled( true );
}
else
@@ -231,7 +231,7 @@ void TDEIconViewSearchLine::queueSearch( const TQString &s )
{
d->queuedSearches++;
d->search = s;
- TQTimer::singleShot( 200, this, TQT_SLOT( activateSearch() ) );
+ TQTimer::singleShot( 200, this, TQ_SLOT( activateSearch() ) );
}
void TDEIconViewSearchLine::activateSearch()
@@ -244,7 +244,7 @@ void TDEIconViewSearchLine::activateSearch()
d->queuedSearches = 0;
}
else {
- TQTimer::singleShot( 200, this, TQT_SLOT( activateSearch() ) );
+ TQTimer::singleShot( 200, this, TQ_SLOT( activateSearch() ) );
}
}