summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/playlistwidget.cpp
Unidiff
Diffstat (limited to 'noncore/multimedia/opieplayer2/playlistwidget.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/playlistwidget.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.cpp b/noncore/multimedia/opieplayer2/playlistwidget.cpp
index e28efd0..f9192e8 100644
--- a/noncore/multimedia/opieplayer2/playlistwidget.cpp
+++ b/noncore/multimedia/opieplayer2/playlistwidget.cpp
@@ -187,8 +187,8 @@ void PlayListWidget::writeDefaultPlaylist() {
187 if( currentString == filename) { 187 if( currentString == filename) {
188 Om3u *m3uList; 188 Om3u *m3uList;
189// qDebug("<<<<<<<<<<<<<default>>>>>>>>>>>>>>>>>>>"); 189// qDebug("<<<<<<<<<<<<<default>>>>>>>>>>>>>>>>>>>");
190 if( d->selectedFiles->first() ) {
190 m3uList = new Om3u(filename, IO_ReadWrite | IO_Truncate); 191 m3uList = new Om3u(filename, IO_ReadWrite | IO_Truncate);
191 d->selectedFiles->first();
192 do { 192 do {
193// qDebug(d->selectedFiles->current()->file()); 193// qDebug(d->selectedFiles->current()->file());
194 m3uList->add( d->selectedFiles->current()->file() ); 194 m3uList->add( d->selectedFiles->current()->file() );
@@ -198,6 +198,8 @@ void PlayListWidget::writeDefaultPlaylist() {
198 m3uList->write(); 198 m3uList->write();
199 m3uList->close(); 199 m3uList->close();
200 if(m3uList) delete m3uList; 200 if(m3uList) delete m3uList;
201
202 }
201 } 203 }
202} 204}
203 205
@@ -853,9 +855,11 @@ void PlayListWidget::writeCurrentM3u() {
853 cfg.setGroup("PlayList"); 855 cfg.setGroup("PlayList");
854 QString currentPlaylist = cfg.readEntry("CurrentPlaylist",""); 856 QString currentPlaylist = cfg.readEntry("CurrentPlaylist","");
855 857
858 if( d->selectedFiles->first()) {
856 Om3u *m3uList; 859 Om3u *m3uList;
857 m3uList = new Om3u( currentPlaylist, IO_ReadWrite | IO_Truncate ); 860 m3uList = new Om3u( currentPlaylist, IO_ReadWrite | IO_Truncate );
858 d->selectedFiles->first(); 861
862
859 qDebug( d->selectedFiles->current()->file()); 863 qDebug( d->selectedFiles->current()->file());
860 do { 864 do {
861 qDebug( d->selectedFiles->current()->file()); 865 qDebug( d->selectedFiles->current()->file());
@@ -868,6 +872,7 @@ void PlayListWidget::writeCurrentM3u() {
868 872
869 if(m3uList) delete m3uList; 873 if(m3uList) delete m3uList;
870} 874}
875}
871 876
872 /* 877 /*
873 writes current playlist to m3u file */ 878 writes current playlist to m3u file */
@@ -890,10 +895,9 @@ void PlayListWidget::writem3u() {
890 filename = QPEApplication::documentDir() + "/" +name+".m3u"; 895 filename = QPEApplication::documentDir() + "/" +name+".m3u";
891 } 896 }
892 897
898 if( d->selectedFiles->first()) {
893 m3uList = new Om3u(filename, IO_ReadWrite); 899 m3uList = new Om3u(filename, IO_ReadWrite);
894 900
895 d->selectedFiles->first();
896
897 do { 901 do {
898 m3uList->add( d->selectedFiles->current()->file()); 902 m3uList->add( d->selectedFiles->current()->file());
899 } 903 }
@@ -923,7 +927,7 @@ void PlayListWidget::writem3u() {
923 927
924 setCaption(tr("OpiePlayer: ") + name); 928 setCaption(tr("OpiePlayer: ") + name);
925 } 929 }
926 930 }
927} 931}
928 932
929void PlayListWidget::keyReleaseEvent( QKeyEvent *e ) { 933void PlayListWidget::keyReleaseEvent( QKeyEvent *e ) {