summaryrefslogtreecommitdiffstats
path: root/konq-plugins/dirfilter/dirfilterplugin.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-04-05 12:06:15 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-07 10:48:04 +0900
commit05330e04abbc3e21a39655fe515e58718d229d2d (patch)
tree10b6b693f29d4d6c882b7be59fc2b5bee2a64ffd /konq-plugins/dirfilter/dirfilterplugin.cpp
parent0900b7aa951e81a02ce679c1c5d88f09afa3749d (diff)
downloadtdeaddons-05330e04abbc3e21a39655fe515e58718d229d2d.tar.gz
tdeaddons-05330e04abbc3e21a39655fe515e58718d229d2d.zip
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit a40b1ca8095d92cbe5876207558663dcab6d1de2)
Diffstat (limited to 'konq-plugins/dirfilter/dirfilterplugin.cpp')
-rw-r--r--konq-plugins/dirfilter/dirfilterplugin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/konq-plugins/dirfilter/dirfilterplugin.cpp b/konq-plugins/dirfilter/dirfilterplugin.cpp
index d70b6cf..a2f7e6f 100644
--- a/konq-plugins/dirfilter/dirfilterplugin.cpp
+++ b/konq-plugins/dirfilter/dirfilterplugin.cpp
@@ -211,7 +211,7 @@ DirFilterPlugin::DirFilterPlugin (TQObject* parent, const char* name,
m_refreshTimer = new TQTimer( this );
m_reactivateRefreshTimer = new TQTimer( this );
connect( m_refreshTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(activateSearch()) );
- m_refreshTimer->start( 200, FALSE ); // 200 millisecond continuous timer
+ m_refreshTimer->start( 200, false ); // 200 millisecond continuous timer
connect( m_reactivateRefreshTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(reactivateRefreshTimer()) );
}
@@ -229,12 +229,12 @@ void DirFilterPlugin::searchTextChanged(const TQString& newtext)
{
m_refreshTimer->stop();
m_reactivateRefreshTimer->stop();
- m_reactivateRefreshTimer->start( 1000, TRUE );
+ m_reactivateRefreshTimer->start( 1000, true );
}
void DirFilterPlugin::reactivateRefreshTimer()
{
- m_refreshTimer->start( 200, FALSE ); // 200 millisecond continuous time
+ m_refreshTimer->start( 200, false ); // 200 millisecond continuous time
}
void DirFilterPlugin::slotOpenURL ()