summaryrefslogtreecommitdiffstats
path: root/amarok/src/engine/xine/xine-engine.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 11:36:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-15 10:10:50 +0900
commitf52f91d7ba8f99e3b9d33d4404d9f21a8b3fb497 (patch)
tree83fa1908b581e4c8a7b14ea3204b8f40d39e296b /amarok/src/engine/xine/xine-engine.cpp
parent00fe96f0930e9cd78404576f0812f71a06d42574 (diff)
downloadamarok-f52f91d7ba8f99e3b9d33d4404d9f21a8b3fb497.tar.gz
amarok-f52f91d7ba8f99e3b9d33d4404d9f21a8b3fb497.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'amarok/src/engine/xine/xine-engine.cpp')
-rw-r--r--amarok/src/engine/xine/xine-engine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/amarok/src/engine/xine/xine-engine.cpp b/amarok/src/engine/xine/xine-engine.cpp
index 478bbb4f..c6c61dbc 100644
--- a/amarok/src/engine/xine/xine-engine.cpp
+++ b/amarok/src/engine/xine/xine-engine.cpp
@@ -859,8 +859,8 @@ Amarok::PluginConfig*
XineEngine::configure() const
{
XineConfigDialog* xcf = new XineConfigDialog( m_xine );
- connect(xcf, TQT_SIGNAL( settingsSaved() ), this, TQT_SLOT( configChanged() ));
- connect(this, TQT_SIGNAL( resetConfig(xine_t*) ), xcf, TQT_SLOT( reset(xine_t*) ));
+ connect(xcf, TQ_SIGNAL( settingsSaved() ), this, TQ_SLOT( configChanged() ));
+ connect(this, TQ_SIGNAL( resetConfig(xine_t*) ), xcf, TQ_SLOT( reset(xine_t*) ));
return xcf;
}