diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-20 17:21:38 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-02-03 21:39:44 +0900 |
commit | 52fb3a0dd7d190b83257b86738b313a02868d133 (patch) | |
tree | ad5e6f9e72e0ea0820861a05c185e11ae39edcf3 /juk/playlistcollection.cpp | |
parent | 4767a3730d12a9e9f2d428d46da80467d73e5015 (diff) | |
download | tdemultimedia-52fb3a0dd7d190b83257b86738b313a02868d133.tar.gz tdemultimedia-52fb3a0dd7d190b83257b86738b313a02868d133.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'juk/playlistcollection.cpp')
-rw-r--r-- | juk/playlistcollection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/juk/playlistcollection.cpp b/juk/playlistcollection.cpp index 1d96e025..ab7b2659 100644 --- a/juk/playlistcollection.cpp +++ b/juk/playlistcollection.cpp @@ -44,7 +44,7 @@ #include <tqwidgetstack.h> #include <tqhbox.h> -#define widget (kapp->mainWidget()) +#define widget (tdeApp->mainWidget()) using namespace ActionCollection; @@ -582,7 +582,7 @@ void PlaylistCollection::setUpcomingPlaylistEnabled(bool enable) m_upcomingPlaylist = 0; if(raiseCollection) { - kapp->processEvents(); // Seems to stop a crash, weird. + tdeApp->processEvents(); // Seems to stop a crash, weird. raise(CollectionList::instance()); } } |