diff options
author | Michele Calgaro <[email protected]> | 2023-12-09 18:25:42 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-10 00:57:31 +0900 |
commit | 436bc26605eddb1bc7c21b8efe6230674b86db60 (patch) | |
tree | 756de6061861cd7104622871009bb6efcaaa0b41 /src/viewarea.cpp | |
parent | 8a590af05765d9e3a00a5c48b2057593dab99b6a (diff) | |
download | kmplayer-436bc26605eddb1bc7c21b8efe6230674b86db60.tar.gz kmplayer-436bc26605eddb1bc7c21b8efe6230674b86db60.zip |
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit c8a3b81b3c22a3eb79afd726cfef71c0949efb7d)
Diffstat (limited to 'src/viewarea.cpp')
-rw-r--r-- | src/viewarea.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/viewarea.cpp b/src/viewarea.cpp index 6f291ba..051c3ea 100644 --- a/src/viewarea.cpp +++ b/src/viewarea.cpp @@ -1353,7 +1353,7 @@ KDE_NO_CDTOR_EXPORT ViewArea::ViewArea (TQWidget * parent, View * view) m_minimal (false) { setEraseColor (TQColor (0, 0, 0)); setAcceptDrops (true); - new TDEAction (i18n ("Fullscreen"), TDEShortcut (TQt::Key_F), TQT_TQOBJECT(this), TQT_SLOT (accelActivated ()), m_collection, "view_fullscreen_toggle"); + new TDEAction (i18n ("Fullscreen"), TDEShortcut (TQt::Key_F), this, TQT_SLOT (accelActivated ()), m_collection, "view_fullscreen_toggle"); setMouseTracking (true); if (!image_data_map) imageCacheDeleter.setObject (image_data_map, new ImageDataMap); @@ -1363,7 +1363,7 @@ KDE_NO_CDTOR_EXPORT ViewArea::~ViewArea () { } KDE_NO_EXPORT void ViewArea::fullScreen () { - TQT_TQOBJECT(this)->killTimers (); + this->killTimers (); m_mouse_invisible_timer = m_repaint_timer = 0; if (m_fullscreen) { showNormal (); @@ -1413,7 +1413,7 @@ KDE_NO_EXPORT void ViewArea::fullScreen () { void ViewArea::minimalMode () { m_minimal = !m_minimal; - TQT_TQOBJECT(this)->killTimers (); + this->killTimers (); m_mouse_invisible_timer = m_repaint_timer = 0; if (m_minimal) { m_view->setViewOnly (); |