summaryrefslogtreecommitdiffstats
path: root/src/viewarea.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 11:37:36 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 11:37:36 +0900
commit861ae27a46c4bb5d5c67feb6d8bbb4a37961b9cd (patch)
tree60d518a0a91ed14bfb31abf12ff0effb10bcec56 /src/viewarea.cpp
parentc8a3b81b3c22a3eb79afd726cfef71c0949efb7d (diff)
downloadkmplayer-861ae27a46c4bb5d5c67feb6d8bbb4a37961b9cd.tar.gz
kmplayer-861ae27a46c4bb5d5c67feb6d8bbb4a37961b9cd.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/viewarea.cpp')
-rw-r--r--src/viewarea.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/viewarea.cpp b/src/viewarea.cpp
index 051c3ea..c76af9b 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), this, TQT_SLOT (accelActivated ()), m_collection, "view_fullscreen_toggle");
+ new TDEAction (i18n ("Fullscreen"), TDEShortcut (TQt::Key_F), this, TQ_SLOT (accelActivated ()), m_collection, "view_fullscreen_toggle");
setMouseTracking (true);
if (!image_data_map)
imageCacheDeleter.setObject (image_data_map, new ImageDataMap);
@@ -1387,7 +1387,7 @@ KDE_NO_EXPORT void ViewArea::fullScreen () {
TQLabel * lbl = new TQLabel (i18n ("Scale:"), menu);
scale_lbl_id = menu->insertItem (lbl, -1, 4);
TQSlider * slider = new TQSlider (50, 150, 10, m_fullscreen_scale, TQt::Horizontal, menu);
- connect (slider, TQT_SIGNAL (valueChanged (int)), this, TQT_SLOT (scale (int)));
+ connect (slider, TQ_SIGNAL (valueChanged (int)), this, TQ_SLOT (scale (int)));
scale_slider_id = menu->insertItem (slider, -1, 5);
m_view->controlPanel ()->button (ControlPanel::button_playlist)->setIconSet (TQIconSet (TQPixmap (normal_window_xpm)));
}