summaryrefslogtreecommitdiffstats
path: root/src/kmplayerview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-02 11:37:36 +0900
committerMichele Calgaro <[email protected]>2024-01-02 11:37:36 +0900
commit861ae27a46c4bb5d5c67feb6d8bbb4a37961b9cd (patch)
tree60d518a0a91ed14bfb31abf12ff0effb10bcec56 /src/kmplayerview.cpp
parentc8a3b81b3c22a3eb79afd726cfef71c0949efb7d (diff)
downloadkmplayer-861ae27a46c4bb5d5c67feb6d8bbb4a37961b9cd.tar.gz
kmplayer-861ae27a46c4bb5d5c67feb6d8bbb4a37961b9cd.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/kmplayerview.cpp')
-rw-r--r--src/kmplayerview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kmplayerview.cpp b/src/kmplayerview.cpp
index caca084..ecad4bb 100644
--- a/src/kmplayerview.cpp
+++ b/src/kmplayerview.cpp
@@ -362,7 +362,7 @@ KDE_NO_EXPORT void View::updateVolume () {
TQLabel * mixer_label = new TQLabel (i18n ("Volume:"), m_control_panel->popupMenu ());
m_control_panel->popupMenu ()->insertItem (mixer_label, -1, 4);
m_volume_slider = new TQSlider (0, 100, 10, volume, TQt::Horizontal, m_control_panel->popupMenu ());
- connect(m_volume_slider, TQT_SIGNAL(valueChanged(int)), this,TQT_SLOT(setVolume(int)));
+ connect(m_volume_slider, TQ_SIGNAL(valueChanged(int)), this,TQ_SLOT(setVolume(int)));
m_control_panel->popupMenu ()->insertItem (m_volume_slider, ControlPanel::menu_volume, 5);
m_control_panel->popupMenu ()->insertSeparator (6);
} else {
@@ -656,7 +656,7 @@ bool View::x11Event (XEvent * e) {
case MapNotify:
if (e->xmap.event == m_viewer->embeddedWinId ()) {
show ();
- TQTimer::singleShot (10, m_viewer, TQT_SLOT (sendConfigureEvent ()));
+ TQTimer::singleShot (10, m_viewer, TQ_SLOT (sendConfigureEvent ()));
}
break;
/*case ConfigureNotify: