author | llornkcor <llornkcor> | 2002-11-14 04:07:28 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-11-14 04:07:28 (UTC) |
commit | 9daeebf24f8a7cb00216df90527d993c5ff7df0d (patch) (side-by-side diff) | |
tree | e5e2c504a92ee6144e969eff11da95643b7eb001 | |
parent | 736339b62f325652b71615b8c3fbc0b064fcf837 (diff) | |
download | opie-9daeebf24f8a7cb00216df90527d993c5ff7df0d.zip opie-9daeebf24f8a7cb00216df90527d993c5ff7df0d.tar.gz opie-9daeebf24f8a7cb00216df90527d993c5ff7df0d.tar.bz2 |
cleanup compiler warnings
-rw-r--r-- | noncore/multimedia/opieplayer2/playlistwidget.cpp | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.cpp b/noncore/multimedia/opieplayer2/playlistwidget.cpp index 53cd00e..593f072 100644 --- a/noncore/multimedia/opieplayer2/playlistwidget.cpp +++ b/noncore/multimedia/opieplayer2/playlistwidget.cpp @@ -116,3 +116,3 @@ PlayListWidget::PlayListWidget( QWidget* parent, const char* name, WFlags fl ) d->selectedFiles, SLOT(moveSelectedDown() ) ); - QVBox *stretch2 = new QVBox( vbox1 ); + // QVBox *stretch2 = new QVBox( vbox1 ); @@ -300,17 +300,17 @@ void PlayListWidget::addAllToList() { - /* - if(!audioScan) - scanForAudio(); - if(!videoScan) - scanForVideo(); - - DocLnkSet filesAll; - Global::findDocuments(&filesAll, "video/*;"+audioMimes); - QListIterator<DocLnk> Adit( filesAll.children() ); - for ( ; Adit.current(); ++Adit ) { - if( QFileInfo( Adit.current()->file() ).exists() ) { - d->selectedFiles->addToSelection( **Adit ); - } - } -*/ + +// if(!audioScan) +// scanForAudio(); +// if(!videoScan) +// scanForVideo(); + +// DocLnkSet filesAll; +// Global::findDocuments(&filesAll, "video/*;"+audioMimes); +// QListIterator<DocLnk> Adit( filesAll.children() ); +// for ( ; Adit.current(); ++Adit ) { +// if( QFileInfo( Adit.current()->file() ).exists() ) { +// d->selectedFiles->addToSelection( **Adit ); +// } +// } + // qDebug("elapsed time %d", t.elapsed() ); @@ -722,3 +722,3 @@ void PlayListWidget::populateAudioView() { StorageInfo storageInfo; - const QList<FileSystem> &fs = storageInfo.fileSystems(); + // const QList<FileSystem> &fs = storageInfo.fileSystems(); if(!audioScan) { @@ -764,3 +764,3 @@ void PlayListWidget::populateVideoView() { StorageInfo storageInfo; - const QList<FileSystem> &fs = storageInfo.fileSystems(); + // const QList<FileSystem> &fs = storageInfo.fileSystems(); @@ -806,3 +806,3 @@ void PlayListWidget::openFile() { qDebug( "Selected filename is " + filename ); - Om3u *m3uList; + // Om3u *m3uList; DocLnk lnk; @@ -1131,3 +1131,3 @@ void PlayListWidget::populateSkinsMenu() { void PlayListWidget::skinsMenuActivated( int item ) { - for( int i = defaultSkinIndex; i > defaultSkinIndex - skinsMenu->count(); i-- ) { + for(unsigned int i = defaultSkinIndex; i > defaultSkinIndex - skinsMenu->count(); i-- ) { skinsMenu->setItemChecked( i, FALSE ); |