diff --git a/amarok/src/engine/yauap/yauap-engine.cpp b/amarok/src/engine/yauap/yauap-engine.cpp index 16d35db8..e9fef143 100644 --- a/amarok/src/engine/yauap/yauap-engine.cpp +++ b/amarok/src/engine/yauap/yauap-engine.cpp @@ -643,7 +643,7 @@ yauapEngine::getAudioCDContents(const TQString &device, KURL::List &urls) Engine::SimpleMetaBundle b; char* saveptr; - KURL url = TQString("cdda://").append( strtok_r(reply_ptr,"=",&saveptr)); + KURL url = TQString(TQString("cdda://").append( strtok_r(reply_ptr,"=",&saveptr))); urls << url; debug() << url << endl; b.title = TQString( i18n( "Track %1" ) ).tqarg( i+1 ); diff --git a/amarok/src/mediadevice/daap/daapclient.cpp b/amarok/src/mediadevice/daap/daapclient.cpp index 9d615e4c..c26f72d9 100644 --- a/amarok/src/mediadevice/daap/daapclient.cpp +++ b/amarok/src/mediadevice/daap/daapclient.cpp @@ -532,7 +532,7 @@ DaapClient::passwordPrompt() KPasswordEdit* m_input; }; - Daap::Reader* callback = dynamic_cast( const_cast( sender() ) ); + Daap::Reader* callback = dynamic_cast( const_cast( sender() ) ); if (!callback) { debug() << "No callback!" << endl; return; @@ -817,7 +817,7 @@ DaapDownloader::doJob() KTempFile* tempNewFile = new KTempFile( TQString(), '.' + TQFileInfo( (*urlIt).path() ).extension() ); tempNewFile->setAutoDelete( true ); m_tempFileList.append( tempNewFile ); - http->getDaap( (*urlIt).path() + (*urlIt).query(), tempNewFile->file() ); + http->getDaap( (*urlIt).path() + (*urlIt).query(), TQT_TQIODEVICE(tempNewFile->file()) ); while( !m_ready && !isAborted() ) { msleep( 100 ); //Sleep 100 msec diff --git a/amarok/src/mediadevice/daap/daapclient.h b/amarok/src/mediadevice/daap/daapclient.h index a714fca8..9b0af159 100644 --- a/amarok/src/mediadevice/daap/daapclient.h +++ b/amarok/src/mediadevice/daap/daapclient.h @@ -167,7 +167,13 @@ class ServerItem : public TQObject, public MediaItem static const int ANIMATION_INTERVAL = 250; }; +#ifdef Q_MOC_RUN +// MOC_SKIP_BEGIN +class DaapDownloader : public JobBase +// MOC_SKIP_END +#else class DaapDownloader : public ThreadManager::Job +#endif { Q_OBJECT TQ_OBJECT diff --git a/amarok/src/mediadevice/daap/daapreader/authentication/contentfetcher.cpp b/amarok/src/mediadevice/daap/daapreader/authentication/contentfetcher.cpp index 82033345..57b36fc3 100644 --- a/amarok/src/mediadevice/daap/daapreader/authentication/contentfetcher.cpp +++ b/amarok/src/mediadevice/daap/daapreader/authentication/contentfetcher.cpp @@ -47,7 +47,7 @@ TQDataStream& ContentFetcher::results() { TQBuffer* bytes = new TQBuffer( readAll() ); - TQIODevice* stream = KFilterDev::device( bytes, "application/x-gzip", false ); + TQIODevice* stream = KFilterDev::device( TQT_TQIODEVICE(bytes), "application/x-gzip", false ); stream->open( IO_ReadOnly ); TQDataStream* ds = new TQDataStream( stream ); return *ds; diff --git a/amarok/src/mediadevice/daap/daapreader/reader.cpp b/amarok/src/mediadevice/daap/daapreader/reader.cpp index 179b724b..34d77f71 100644 --- a/amarok/src/mediadevice/daap/daapreader/reader.cpp +++ b/amarok/src/mediadevice/daap/daapreader/reader.cpp @@ -170,7 +170,7 @@ Reader::logoutRequest() void Reader::logoutRequest( int, bool ) { - const_cast(sender())->deleteLater(); + const_cast(sender())->deleteLater(); deleteLater(); } @@ -418,7 +418,7 @@ Reader::addElement( Map &tqparentMap, char* tag, TQVariant element ) void Reader::fetchingError( const TQString& error ) { - const_cast< TQObject* >( sender() )->deleteLater(); + const_cast( sender() )->deleteLater(); emit httpError( error ); } #include "reader.moc" diff --git a/amarok/src/mediadevice/daap/daapserver.cpp b/amarok/src/mediadevice/daap/daapserver.cpp index 893f3275..40e4cf24 100644 --- a/amarok/src/mediadevice/daap/daapserver.cpp +++ b/amarok/src/mediadevice/daap/daapserver.cpp @@ -62,7 +62,7 @@ DaapServer::readSql() line.remove( 0, sqlPrefix.length() ); debug() << "sql run " << line << endl; m_server->writeStdin( CollectionDB::instance()->query( line ).join("\n") ); - m_server->writeStdin( "**** END SQL ****" ); + m_server->writeStdin( TQString("**** END SQL ****") ); } else if( line.startsWith( serverStartPrefix ) ) { diff --git a/amarok/src/mediadevice/ifp/ifpmediadevice.cpp b/amarok/src/mediadevice/ifp/ifpmediadevice.cpp index 590e7959..4f9e153e 100644 --- a/amarok/src/mediadevice/ifp/ifpmediadevice.cpp +++ b/amarok/src/mediadevice/ifp/ifpmediadevice.cpp @@ -419,7 +419,7 @@ IfpMediaDevice::copyTrackToDevice( const MetaBundle& bundle ) const TQCString dest = TQFile::encodeName( cleanPath(directory + newFilename) ); - kapp->processEvents( 100 ); + kapp->tqprocessEvents( 100 ); int result = uploadTrack( src, dest ); if( !result ) //success @@ -486,7 +486,7 @@ IfpMediaDevice::filetransferCallback( void *pData, struct ifp_transfer_status *p { // will be called by 'ifp_upload_file' by callback - kapp->processEvents( 100 ); + kapp->tqprocessEvents( 100 ); IfpMediaDevice *that = static_cast(pData); @@ -526,14 +526,14 @@ IfpMediaDevice::deleteItemFromDevice( MediaItem *item, int /*flags*/ ) case MediaItem::DIRECTORY: err = ifp_delete_dir_recursive( &m_ifpdev, encodedPath ); debug() << "Deleting folder: " << encodedPath << endl; - checkResult( err, i18n("Directory cannot be deleted: '%1'").tqarg(encodedPath) ); + checkResult( err, i18n("Directory cannot be deleted: '%1'").tqarg(encodedPath.data()) ); break; default: err = ifp_delete( &m_ifpdev, encodedPath ); debug() << "Deleting file: " << encodedPath << endl; count += 1; - checkResult( err, i18n("File does not exist: '%1'").tqarg(encodedPath) ); + checkResult( err, i18n("File does not exist: '%1'").tqarg(encodedPath.data()) ); break; } if( err == 0 ) //success @@ -587,9 +587,9 @@ IfpMediaDevice::addTrackToList( int type, TQString name, int /*size*/ ) else if( type == IFP_FILE ) //file { - if( name.endsWith( "mp3", false ) || name.endsWith( "wma", false ) || - name.endsWith( "wav", false ) || name.endsWith( "ogg", false ) || - name.endsWith( "asf", false ) ) + if( name.tqendsWith( "mp3", false ) || name.tqendsWith( "wma", false ) || + name.tqendsWith( "wav", false ) || name.tqendsWith( "ogg", false ) || + name.tqendsWith( "asf", false ) ) m_last->setType( MediaItem::TRACK ); diff --git a/amarok/src/mediadevice/mtp/mtpmediadevice.cpp b/amarok/src/mediadevice/mtp/mtpmediadevice.cpp index 54acfb6d..a96adec3 100644 --- a/amarok/src/mediadevice/mtp/mtpmediadevice.cpp +++ b/amarok/src/mediadevice/mtp/mtpmediadevice.cpp @@ -139,7 +139,7 @@ MtpMediaDevice::progressCallback( uint64_t const sent, uint64_t const total, voi Q_UNUSED( sent ); Q_UNUSED( total ); - kapp->processEvents( 100 ); + kapp->tqprocessEvents( 100 ); MtpMediaDevice *dev = (MtpMediaDevice*)(data); @@ -188,12 +188,12 @@ MediaItem // fallback to checking the extension (e.g. .wma, .ogg, etc) debug() << "No filetype found by Amarok filetype" << endl; - const TQString extension = bundle.url().path().section( ".", -1 ).lower(); + const TQString extension = TQString(bundle.url().path().section( ".", -1 )).lower(); - int libmtp_type = m_supportedFiles.findIndex( extension ); + int libmtp_type = m_supportedFiles.tqfindIndex( extension ); if( libmtp_type >= 0 ) { - int keyIndex = mtpFileTypes.values().findIndex( extension ); + int keyIndex = mtpFileTypes.values().tqfindIndex( extension ); libmtp_type = mtpFileTypes.keys()[keyIndex]; trackmeta->filetype = (LIBMTP_filetype_t) libmtp_type; debug() << "set filetype to " << libmtp_type << " based on extension of ." << extension << endl; @@ -321,7 +321,7 @@ MediaItem LIBMTP_destroy_track_t( trackmeta ); - kapp->processEvents( 100 ); + kapp->tqprocessEvents( 100 ); // add track to view and to new tracks list MediaItem *newItem = addTrackToView( taggedTrack ); @@ -436,7 +436,7 @@ MtpMediaDevice::updateAlbumArt( TQPtrList *items ) setCanceled( false ); - kapp->processEvents( 100 ); + kapp->tqprocessEvents( 100 ); TQMap< TQString, TQPtrList > albumList; for( MtpMediaItem *it = dynamic_cast(items->first()); it && !(m_canceled); it = dynamic_cast(items->next()) ) @@ -453,14 +453,14 @@ MtpMediaDevice::updateAlbumArt( TQPtrList *items ) } int i = 0; setProgress( i, albumList.count() ); - kapp->processEvents( 100 ); + kapp->tqprocessEvents( 100 ); TQMap< TQString, TQPtrList >::Iterator it; for( it = albumList.begin(); it != albumList.end(); ++it ) { sendAlbumArt( &it.data() ); setProgress( ++i ); if( i % 20 == 0 ) - kapp->processEvents( 100 ); + kapp->tqprocessEvents( 100 ); } hideProgress(); } @@ -744,7 +744,7 @@ MtpMediaDevice::synchronizeDevice() MediaItem *MtpMediaDevice::trackExists( const MetaBundle &bundle ) { - MediaItem *artist = dynamic_cast( m_view->findItem( bundle.artist(), 0 ) ); + MediaItem *artist = dynamic_cast( m_view->tqfindItem( bundle.artist(), 0 ) ); if( artist ) { MediaItem *album = dynamic_cast( artist->findItem( bundle.album() ) ); @@ -1053,7 +1053,7 @@ MtpMediaDevice::deleteObject( MtpMediaItem *deleteItem ) m_fileNameToItem.remove( TQString( "%1/%2" ).tqarg( deleteItem->track()->folderId() ).tqarg( deleteItem->bundle()->filename() ) ); // remove from the media view delete deleteItem; - kapp->processEvents( 100 ); + kapp->tqprocessEvents( 100 ); return 1; } @@ -1137,11 +1137,11 @@ MtpMediaDevice::openDevice( bool silent ) m_supportedFiles << mtpFileTypes[ filetypes[ i ] ]; } // find supported image types (for album art). - if( m_supportedFiles.findIndex( "jpg" ) ) + if( m_supportedFiles.tqfindIndex( "jpg" ) ) m_format = "JPEG"; - else if( m_supportedFiles.findIndex( "png" ) ) + else if( m_supportedFiles.tqfindIndex( "png" ) ) m_format = "PNG"; - else if( m_supportedFiles.findIndex( "gif" ) ) + else if( m_supportedFiles.tqfindIndex( "gif" ) ) m_format = "GIF"; free( filetypes ); m_critical_mutex.unlock(); @@ -1422,7 +1422,7 @@ MtpMediaItem { TQString artistName = track->bundle()->artist(); - MtpMediaItem *artist = dynamic_cast( m_view->findItem( artistName, 0 ) ); + MtpMediaItem *artist = dynamic_cast( m_view->tqfindItem( artistName, 0 ) ); if( !artist ) { artist = new MtpMediaItem(m_view); @@ -1478,7 +1478,7 @@ MtpMediaDevice::readMtpMusic() int progress = 0; setProgress( progress, total ); // we don't know how many tracks. fake progress bar. - kapp->processEvents( 100 ); + kapp->tqprocessEvents( 100 ); LIBMTP_track_t *tracks = LIBMTP_Get_Tracklisting_With_Callback( m_device, progressCallback, this ); @@ -1512,7 +1512,7 @@ MtpMediaDevice::readMtpMusic() progress++; setProgress( progress ); if( progress % 50 == 0 ) - kapp->processEvents( 100 ); + kapp->tqprocessEvents( 100 ); } } @@ -1562,7 +1562,7 @@ MtpMediaDevice::readPlaylists() tmp = playlists; playlists = playlists->next; LIBMTP_destroy_playlist_t( tmp ); - kapp->processEvents( 50 ); + kapp->tqprocessEvents( 50 ); } } } @@ -1585,7 +1585,7 @@ MtpMediaDevice::readAlbums() tmp = albums; albums = albums->next; LIBMTP_destroy_album_t( tmp ); - kapp->processEvents( 50 ); + kapp->tqprocessEvents( 50 ); } } } diff --git a/amarok/src/mediadevice/njb/njbmediadevice.cpp b/amarok/src/mediadevice/njb/njbmediadevice.cpp index 67eb44e9..23445e66 100644 --- a/amarok/src/mediadevice/njb/njbmediadevice.cpp +++ b/amarok/src/mediadevice/njb/njbmediadevice.cpp @@ -380,7 +380,7 @@ NjbMediaDevice::downloadToCollection() TQPtrList items; m_view->getSelectedLeaves( 0, &items ); - KTempDir tempdir; // Default prefix is fine with us + KTempDir tempdir( TQString::null ); // Default prefix is fine with us tempdir.setAutoDelete( true ); // We don't need it once the work is done. TQString path = tempdir.name(), filepath; KURL::List urls; @@ -452,7 +452,7 @@ NjbMediaDevice::copyTrackToDevice(const MetaBundle& bundle) njb_songid_t* songid = NJB_Songid_New(); taggedTrack->writeToSongid( songid ); m_busy = true; - kapp->processEvents( 100 ); + kapp->tqprocessEvents( 100 ); if(NJB_Send_Track (m_njb, bundle.url().path().utf8(), songid, progressCallback, this, &id) != NJB_SUCCESS) { debug() << ": NJB_Send_Track failed\n"; @@ -614,7 +614,7 @@ NjbMediaDevice::removeConfigElements(TQWidget* arg1) MediaItem * NjbMediaDevice::trackExists( const MetaBundle & bundle ) { - MediaItem *artist = dynamic_cast( m_view->findItem( bundle.artist(), 0 ) ); + MediaItem *artist = dynamic_cast( m_view->tqfindItem( bundle.artist(), 0 ) ); if ( artist ) { MediaItem *album = dynamic_cast( artist->findItem( bundle.album() ) ); @@ -687,7 +687,7 @@ NjbMediaDevice::runTransferDialog() int NjbMediaDevice::progressCallback( u_int64_t sent, u_int64_t total, const char* /*buf*/, unsigned /*len*/, void* data) { - kapp->processEvents( 100 ); + kapp->tqprocessEvents( 100 ); NjbMediaDevice *njb_media = reinterpret_cast(data); @@ -733,11 +733,11 @@ NjbMediaDevice::readJukeboxMusic( void ) m_playlistItem->m_order = -5; m_playlistItem->setType( MediaItem::PLAYLISTSROOT );*/ - kapp->processEvents( 100 ); + kapp->tqprocessEvents( 100 ); for( trackValueList::iterator it = trackList.begin(); it != trackList.end(); it++ ) { - if( m_view->findItem( ((*it)->bundle()->artist().string()), 0 ) == 0 ) + if( m_view->tqfindItem( ((*it)->bundle()->artist().string()), 0 ) == 0 ) { NjbMediaItem *artist = new NjbMediaItem( m_view ); artist->setText( 0, (*it)->bundle()->artist() ); @@ -757,7 +757,7 @@ NjbMediaDevice::addTrackToView( NjbTrack *track, NjbMediaItem *item ) { TQString artistName = track->bundle()->artist(); - NjbMediaItem *artist = dynamic_cast( m_view->findItem( artistName, 0 ) ); + NjbMediaItem *artist = dynamic_cast( m_view->tqfindItem( artistName, 0 ) ); if(!artist) { artist = new NjbMediaItem(m_view); @@ -869,7 +869,7 @@ NjbMediaDevice::addTracks(const TQString &artist, const TQString &album, NjbMedi NjbMediaItem* NjbMediaDevice::addArtist( NjbTrack *track ) { - if( m_view->findItem( track->bundle()->artist().string(), 0 ) == 0 ) + if( m_view->tqfindItem( track->bundle()->artist().string(), 0 ) == 0 ) { NjbMediaItem *artist = new NjbMediaItem( m_view ); artist->setText( 0, track->bundle()->artist() ); @@ -878,7 +878,7 @@ NjbMediaDevice::addArtist( NjbTrack *track ) artist->setBundle( track->bundle() ); artist->m_device = this; } - return dynamic_cast( m_view->findItem( track->bundle()->artist().string(), 0 ) ); + return dynamic_cast( m_view->tqfindItem( track->bundle()->artist().string(), 0 ) ); } void diff --git a/amarok/src/mediadevice/njb/njbmediadevice.h b/amarok/src/mediadevice/njb/njbmediadevice.h index 0ba7b207..bcf29d09 100644 --- a/amarok/src/mediadevice/njb/njbmediadevice.h +++ b/amarok/src/mediadevice/njb/njbmediadevice.h @@ -85,7 +85,7 @@ class NjbMediaItem : public MediaItem class NjbMediaDevice : public MediaDevice { Q_OBJECT - TQ_OBJECT + TQ_OBJECT public: NjbMediaDevice();