summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/svnfiletip.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-01-21 14:25:02 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-01-21 14:25:02 +0900
commita162a4515bdc59f7b9cbedf216d433c67e508b06 (patch)
treed6201bcb6a1147c3fdc678efeb1e4c44629e7679 /src/svnfrontend/svnfiletip.cpp
parentff23b63144c6f8d27fbefb9c098155c769719d58 (diff)
downloadtdesvn-a162a4515bdc59f7b9cbedf216d433c67e508b06.tar.gz
tdesvn-a162a4515bdc59f7b9cbedf216d433c67e508b06.zip
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/svnfrontend/svnfiletip.cpp')
-rw-r--r--src/svnfrontend/svnfiletip.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/svnfrontend/svnfiletip.cpp b/src/svnfrontend/svnfiletip.cpp
index f9e66b5..b0abf44 100644
--- a/src/svnfrontend/svnfiletip.cpp
+++ b/src/svnfrontend/svnfiletip.cpp
@@ -218,12 +218,12 @@ void SvnFileTip::setFilter( bool enable )
if ( enable == m_filter ) return;
if ( enable ) {
- kapp->installEventFilter( this );
+ tdeApp->installEventFilter( this );
TQApplication::setGlobalMouseTracking( true );
}
else {
TQApplication::setGlobalMouseTracking( false );
- kapp->removeEventFilter( this );
+ tdeApp->removeEventFilter( this );
}
m_filter = enable;
}