summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/om3u.cpp11
-rw-r--r--noncore/multimedia/opieplayer2/playlistwidget.cpp14
2 files changed, 13 insertions, 12 deletions
diff --git a/noncore/multimedia/opieplayer2/om3u.cpp b/noncore/multimedia/opieplayer2/om3u.cpp
index 0be727b..039f3b1 100644
--- a/noncore/multimedia/opieplayer2/om3u.cpp
+++ b/noncore/multimedia/opieplayer2/om3u.cpp
@@ -51,13 +51,7 @@
51Om3u::Om3u( const QString &filePath, int mode) 51Om3u::Om3u( const QString &filePath, int mode)
52 : QStringList (){ 52 : QStringList (){
53//filePath is path name to m3u
54//qDebug("<<<<<<<new m3u "+filePath); 53//qDebug("<<<<<<<new m3u "+filePath);
55 f.setName(filePath); 54 f.setName(filePath);
56// if(f.exists())
57// f.open( IO_ReadWrite);
58// else
59// f.open( IO_ReadWrite | IO_Truncate);
60 f.open(mode); 55 f.open(mode);
61
62} 56}
63 57
@@ -133,4 +127,5 @@ void Om3u::readPls() { //it's a pls file
133void Om3u::write() { //writes list to m3u file 127void Om3u::write() { //writes list to m3u file
134 QString list; 128 QString list;
129 if(count()>0) {
135 for ( QStringList::ConstIterator it = begin(); it != end(); ++it ) { 130 for ( QStringList::ConstIterator it = begin(); it != end(); ++it ) {
136 qDebug(*it); 131 qDebug(*it);
@@ -138,4 +133,5 @@ void Om3u::write() { //writes list to m3u file
138 } 133 }
139 f.writeBlock( list, list.length() ); 134 f.writeBlock( list, list.length() );
135 }
140// f.close(); 136// f.close();
141} 137}
@@ -147,4 +143,5 @@ void Om3u::add(const QString &filePath) { //adds to m3u file
147void Om3u::remove(const QString &filePath) { //removes from m3u list 143void Om3u::remove(const QString &filePath) { //removes from m3u list
148 QString list, currentFile; 144 QString list, currentFile;
145 if(count()>0) {
149 for ( QStringList::ConstIterator it = begin(); it != end(); ++it ) { 146 for ( QStringList::ConstIterator it = begin(); it != end(); ++it ) {
150 currentFile=*it; 147 currentFile=*it;
@@ -155,5 +152,5 @@ void Om3u::remove(const QString &filePath) { //removes from m3u list
155 } 152 }
156 f.writeBlock( list, list.length() ); 153 f.writeBlock( list, list.length() );
157 154 }
158} 155}
159 156
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
@@ -188,6 +188,6 @@ void PlayListWidget::writeDefaultPlaylist() {
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());
@@ -199,4 +199,6 @@ void PlayListWidget::writeDefaultPlaylist() {
199 m3uList->close(); 199 m3uList->close();
200 if(m3uList) delete m3uList; 200 if(m3uList) delete m3uList;
201
202 }
201 } 203 }
202} 204}
@@ -854,7 +856,9 @@ void PlayListWidget::writeCurrentM3u() {
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 {
@@ -869,4 +873,5 @@ void PlayListWidget::writeCurrentM3u() {
869 if(m3uList) delete m3uList; 873 if(m3uList) delete m3uList;
870} 874}
875}
871 876
872 /* 877 /*
@@ -891,8 +896,7 @@ void PlayListWidget::writem3u() {
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());
@@ -924,5 +928,5 @@ void PlayListWidget::writem3u() {
924 setCaption(tr("OpiePlayer: ") + name); 928 setCaption(tr("OpiePlayer: ") + name);
925 } 929 }
926 930 }
927} 931}
928 932