summaryrefslogtreecommitdiffstats
path: root/src/kmplayercontrolpanel.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-04 10:15:32 +0900
commit1f99527a72e8c797114ec9524f22b47b5340d9d8 (patch)
tree935d085e4f5d7db612f1b7ae2e28582c4d748b1f /src/kmplayercontrolpanel.cpp
parent436bc26605eddb1bc7c21b8efe6230674b86db60 (diff)
downloadkmplayer-1f99527a72e8c797114ec9524f22b47b5340d9d8.tar.gz
kmplayer-1f99527a72e8c797114ec9524f22b47b5340d9d8.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 861ae27a46c4bb5d5c67feb6d8bbb4a37961b9cd)
Diffstat (limited to 'src/kmplayercontrolpanel.cpp')
-rw-r--r--src/kmplayercontrolpanel.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/kmplayercontrolpanel.cpp b/src/kmplayercontrolpanel.cpp
index 31ff93a..ac3fe82 100644
--- a/src/kmplayercontrolpanel.cpp
+++ b/src/kmplayercontrolpanel.cpp
@@ -423,21 +423,21 @@ KDE_NO_CDTOR_EXPORT ControlPanel::ControlPanel(TQWidget * parent, View * view)
m_popupMenu->insertSeparator ();
m_popupMenu->insertItem (TDEGlobal::iconLoader ()->loadIconSet (TQString ("configure"), TDEIcon::Small, 0, true), i18n ("&Configure KMPlayer..."), menu_config);
setAutoControls (true);
- connect (m_buttons [button_config], TQT_SIGNAL (clicked ()),
- this, TQT_SLOT (buttonClicked ()));
- connect (m_buttons [button_language], TQT_SIGNAL (clicked ()),
- this, TQT_SLOT (buttonClicked ()));
- connect (m_buttons [button_config], TQT_SIGNAL (mouseEntered ()),
- this, TQT_SLOT (buttonMouseEntered ()));
- connect (m_buttons [button_language], TQT_SIGNAL (mouseEntered ()),
- this, TQT_SLOT (buttonMouseEntered ()));
- connect (m_popupMenu, TQT_SIGNAL (mouseLeft ()), this, TQT_SLOT (menuMouseLeft ()));
- connect (m_playerMenu, TQT_SIGNAL (mouseLeft ()), this, TQT_SLOT(menuMouseLeft ()));
- connect (m_zoomMenu, TQT_SIGNAL (mouseLeft ()), this, TQT_SLOT (menuMouseLeft ()));
- connect (m_colorMenu, TQT_SIGNAL (mouseLeft ()), this, TQT_SLOT (menuMouseLeft ()));
- connect (m_languageMenu, TQT_SIGNAL(mouseLeft ()), this, TQT_SLOT(menuMouseLeft()));
- connect (m_subtitleMenu, TQT_SIGNAL(mouseLeft ()), this, TQT_SLOT(menuMouseLeft()));
- connect (m_audioMenu, TQT_SIGNAL (mouseLeft ()), this, TQT_SLOT (menuMouseLeft ()));
+ connect (m_buttons [button_config], TQ_SIGNAL (clicked ()),
+ this, TQ_SLOT (buttonClicked ()));
+ connect (m_buttons [button_language], TQ_SIGNAL (clicked ()),
+ this, TQ_SLOT (buttonClicked ()));
+ connect (m_buttons [button_config], TQ_SIGNAL (mouseEntered ()),
+ this, TQ_SLOT (buttonMouseEntered ()));
+ connect (m_buttons [button_language], TQ_SIGNAL (mouseEntered ()),
+ this, TQ_SLOT (buttonMouseEntered ()));
+ connect (m_popupMenu, TQ_SIGNAL (mouseLeft ()), this, TQ_SLOT (menuMouseLeft ()));
+ connect (m_playerMenu, TQ_SIGNAL (mouseLeft ()), this, TQ_SLOT(menuMouseLeft ()));
+ connect (m_zoomMenu, TQ_SIGNAL (mouseLeft ()), this, TQ_SLOT (menuMouseLeft ()));
+ connect (m_colorMenu, TQ_SIGNAL (mouseLeft ()), this, TQ_SLOT (menuMouseLeft ()));
+ connect (m_languageMenu, TQ_SIGNAL(mouseLeft ()), this, TQ_SLOT(menuMouseLeft()));
+ connect (m_subtitleMenu, TQ_SIGNAL(mouseLeft ()), this, TQ_SLOT(menuMouseLeft()));
+ connect (m_audioMenu, TQ_SIGNAL (mouseLeft ()), this, TQ_SLOT (menuMouseLeft ()));
}
KDE_NO_EXPORT void ControlPanel::setPalette (const TQPalette & pal) {