diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-09 18:25:42 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-09 18:44:34 +0900 |
commit | c8a3b81b3c22a3eb79afd726cfef71c0949efb7d (patch) | |
tree | 43c3df751ce6f659ee6670a54a55778b922eec1f /src/viewarea.cpp | |
parent | 30650e19e38500549bfa6092b213c6d852e470e9 (diff) | |
download | kmplayer-c8a3b81b3c22a3eb79afd726cfef71c0949efb7d.tar.gz kmplayer-c8a3b81b3c22a3eb79afd726cfef71c0949efb7d.zip |
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 (); |