summaryrefslogtreecommitdiffstats
path: root/amarok/src/xmlloader_p.h
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/xmlloader_p.h
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/xmlloader_p.h')
-rw-r--r--amarok/src/xmlloader_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/amarok/src/xmlloader_p.h b/amarok/src/xmlloader_p.h
index 625f9fb1..72fd5e27 100644
--- a/amarok/src/xmlloader_p.h
+++ b/amarok/src/xmlloader_p.h
@@ -44,8 +44,8 @@ class MetaBundle::XmlLoader::ThreadedLoader: public TQObject, public TQThread
{
{
XmlLoader loader;
- connect( &loader, TQT_SIGNAL( newBundle( const MetaBundle&, const XmlAttributeList& ) ),
- this, TQT_SLOT( bundleLoaded( const MetaBundle&, const XmlAttributeList& ) ) );
+ connect( &loader, TQ_SIGNAL( newBundle( const MetaBundle&, const XmlAttributeList& ) ),
+ this, TQ_SLOT( bundleLoaded( const MetaBundle&, const XmlAttributeList& ) ) );
bool success = loader.load( m_source );
if( !success )
TQApplication::postEvent( m_target, new BundleLoadedEvent( loader.m_lastError ) );
@@ -66,8 +66,8 @@ public:
SimpleLoader( TQXmlInputSource *source, bool *ok )
{
XmlLoader loader;
- connect( &loader, TQT_SIGNAL( newBundle( const MetaBundle&, const XmlAttributeList& ) ),
- this, TQT_SLOT( bundleLoaded( const MetaBundle&, const XmlAttributeList& ) ) );
+ connect( &loader, TQ_SIGNAL( newBundle( const MetaBundle&, const XmlAttributeList& ) ),
+ this, TQ_SLOT( bundleLoaded( const MetaBundle&, const XmlAttributeList& ) ) );
const bool success = loader.load( source );
if( ok )
(*ok) = success;