summaryrefslogtreecommitdiffstats
path: root/src/viewarea.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-09 18:25:42 +0900
committerMichele Calgaro <[email protected]>2023-12-10 00:57:31 +0900
commit436bc26605eddb1bc7c21b8efe6230674b86db60 (patch)
tree756de6061861cd7104622871009bb6efcaaa0b41 /src/viewarea.cpp
parent8a590af05765d9e3a00a5c48b2057593dab99b6a (diff)
downloadkmplayer-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.cpp6
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 ();