diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-21 14:25:02 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-21 14:25:02 +0900 |
commit | a162a4515bdc59f7b9cbedf216d433c67e508b06 (patch) | |
tree | d6201bcb6a1147c3fdc678efeb1e4c44629e7679 /src/svnfrontend/svnfiletip.cpp | |
parent | ff23b63144c6f8d27fbefb9c098155c769719d58 (diff) | |
download | tdesvn-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.cpp | 4 |
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; } |