summaryrefslogtreecommitdiffstats
path: root/amarok/src/playlistloader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'amarok/src/playlistloader.cpp')
-rw-r--r--amarok/src/playlistloader.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/amarok/src/playlistloader.cpp b/amarok/src/playlistloader.cpp
index f1d13fd7..11943a0b 100644
--- a/amarok/src/playlistloader.cpp
+++ b/amarok/src/playlistloader.cpp
@@ -83,8 +83,8 @@ UrlLoader::UrlLoader( const KURL::List &urls, TQListViewItem *after, int options
, m_xmlSource( 0 )
{
- connect( this, TQT_SIGNAL( queueChanged( const PLItemList &, const PLItemList & ) ),
- Playlist::instance(), TQT_SIGNAL( queueChanged( const PLItemList &, const PLItemList & ) ) );
+ connect( this, TQ_SIGNAL( queueChanged( const PLItemList &, const PLItemList & ) ),
+ Playlist::instance(), TQ_SIGNAL( queueChanged( const PLItemList &, const PLItemList & ) ) );
Playlist::instance()->lock(); // prevent user removing items as this could be bad
@@ -95,7 +95,7 @@ UrlLoader::UrlLoader( const KURL::List &urls, TQListViewItem *after, int options
Amarok::StatusBar::instance()->newProgressOperation( this )
.setDescription( m_description )
.setStatus( i18n("Preparing") )
- .setAbortSlot( this, TQT_SLOT(abort()) )
+ .setAbortSlot( this, TQ_SLOT(abort()) )
.setTotalSteps( 100 );
foreachType( KURL::List, urls ) {
@@ -459,10 +459,10 @@ UrlLoader::loadXml( const KURL &url )
delete m_xmlSource;
m_xmlSource = new TQXmlInputSource( file );
MyXmlLoader loader;
- connect( &loader, TQT_SIGNAL( newBundle( const MetaBundle&, const XmlAttributeList& ) ),
- this, TQT_SLOT( slotNewBundle( const MetaBundle&, const XmlAttributeList& ) ) );
- connect( &loader, TQT_SIGNAL( playlistInfo( const TQString&, const TQString&, const TQString& ) ),
- this, TQT_SLOT( slotPlaylistInfo( const TQString&, const TQString&, const TQString& ) ) );
+ connect( &loader, TQ_SIGNAL( newBundle( const MetaBundle&, const XmlAttributeList& ) ),
+ this, TQ_SLOT( slotNewBundle( const MetaBundle&, const XmlAttributeList& ) ) );
+ connect( &loader, TQ_SIGNAL( playlistInfo( const TQString&, const TQString&, const TQString& ) ),
+ this, TQ_SLOT( slotPlaylistInfo( const TQString&, const TQString&, const TQString& ) ) );
loader.load( m_xmlSource );
if( !m_xml.isEmpty() )
{
@@ -996,7 +996,7 @@ RemotePlaylistFetcher::RemotePlaylistFetcher( const KURL &source, TQListViewItem
Amarok::StatusBar::instance()->newProgressOperation( job )
.setDescription( i18n("Retrieving Playlist") );
- connect( job, TQT_SIGNAL(result( TDEIO::Job* )), TQT_SLOT(result( TDEIO::Job* )) );
+ connect( job, TQ_SIGNAL(result( TDEIO::Job* )), TQ_SLOT(result( TDEIO::Job* )) );
Playlist::instance()->lock();
}