diff options
author | Michele Calgaro <[email protected]> | 2023-08-12 18:43:06 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-14 15:23:40 +0900 |
commit | e524a45ee7cd6285ef3fa48ac8a1ac056293149a (patch) | |
tree | cc5956a8e3759f457b531139d6d7b5ec80deb478 /src/kmplayerapp.cpp | |
parent | f15328299d0c380543f17448311292fe57fae751 (diff) | |
download | kmplayer-e524a45ee7cd6285ef3fa48ac8a1ac056293149a.tar.gz kmplayer-e524a45ee7cd6285ef3fa48ac8a1ac056293149a.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/kmplayerapp.cpp')
-rw-r--r-- | src/kmplayerapp.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/kmplayerapp.cpp b/src/kmplayerapp.cpp index 1b61320..04fc980 100644 --- a/src/kmplayerapp.cpp +++ b/src/kmplayerapp.cpp @@ -1501,8 +1501,7 @@ KDE_NO_EXPORT void KMPlayerApp::slotStatusMsg (const TQString &text) { } KDE_NO_EXPORT void KMPlayerApp::fullScreen () { -// if (TQT_TQOBJECT(const_cast<TQT_BASE_OBJECT_NAME*>(sender ()))->metaObject ()->inherits ("TDEAction")) - if (TQT_TQOBJECT(const_cast<TQT_BASE_OBJECT_NAME*>(sender ()))->inherits ("TDEAction")) + if (sender()->inherits("TDEAction")) m_view->fullScreen(); #if KDE_IS_VERSION(3,1,90) viewFullscreen->setChecked (m_view->isFullScreen ()); |