diff options
Diffstat (limited to 'amarok/src/playlistbrowseritem.cpp')
-rw-r--r-- | amarok/src/playlistbrowseritem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/amarok/src/playlistbrowseritem.cpp b/amarok/src/playlistbrowseritem.cpp index d3a36869..b2401e41 100644 --- a/amarok/src/playlistbrowseritem.cpp +++ b/amarok/src/playlistbrowseritem.cpp @@ -3487,7 +3487,7 @@ void ShoutcastBrowser::setOpen( bool open ) TQStringList tmpdirs = KGlobal::dirs()->resourceDirs( "tmp" ); TQString tmpfile = tmpdirs[0]; - tmpfile += "/amarok-genres-" + KApplication::randomString(10) + ".xml-"; + tmpfile += "/amarok-genres-" + TDEApplication::randomString(10) + ".xml-"; //get the genre list if ( !m_downloading ) @@ -3659,7 +3659,7 @@ void ShoutcastGenre::setOpen( bool open ) void ShoutcastGenre::startGenreDownload( TQString genre, TQString tmppath ) { - TQString tmpfile = tmppath + "/amarok-list-" + genre + "-" + KApplication::randomString(10) + ".xml"; + TQString tmpfile = tmppath + "/amarok-list-" + genre + "-" + TDEApplication::randomString(10) + ".xml"; KIO::CopyJob *cj = KIO::copy( "http://www.shoutcast.com/sbin/newxml.phtml?genre=" + genre, tmpfile, false ); connect( cj, TQT_SIGNAL( copyingDone ( KIO::Job*, const KURL&, const KURL&, bool, bool ) ), this, TQT_SLOT( doneListDownload( KIO::Job*, const KURL&, const KURL&, bool, bool ) ) ); |