summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/multimedia/opieplayer/libmad/libmadplugin.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/core/multimedia/opieplayer/libmad/libmadplugin.cpp b/core/multimedia/opieplayer/libmad/libmadplugin.cpp
index b06cdaa..0adb503 100644
--- a/core/multimedia/opieplayer/libmad/libmadplugin.cpp
+++ b/core/multimedia/opieplayer/libmad/libmadplugin.cpp
@@ -36,7 +36,6 @@
36 36
37#include <qapplication.h> 37#include <qapplication.h>
38#include <qmessagebox.h> 38#include <qmessagebox.h>
39#include <qregexp.h>
40 39
41#include <qpe/config.h> 40#include <qpe/config.h>
42 41
@@ -821,8 +820,10 @@ void LibMadPlugin::printID3Tags() {
821 char *ptr3 = ptr2; 820 char *ptr3 = ptr2;
822 while ( ptr3-1 >= ptr && isspace(ptr3[-1]) ) ptr3--; 821 while ( ptr3-1 >= ptr && isspace(ptr3[-1]) ) ptr3--;
823 char push2 = *ptr3; *ptr3 = '\0'; 822 char push2 = *ptr3; *ptr3 = '\0';
824 if ( strcmp( ptr, "" ) ) 823 if ( strcmp( ptr, "" ) ) {
824 if( ((QString)ptr).find(" ") == -1) // don't add anything that has blanks
825 info += ( i != 0 ? ", " : "" ) + label[i] + ": " + ptr; 825 info += ( i != 0 ? ", " : "" ) + label[i] + ": " + ptr;
826 }
826 //qDebug( info.latin1() ); 827 //qDebug( info.latin1() );
827 *ptr3 = push2; 828 *ptr3 = push2;
828 *ptr2 = push; 829 *ptr2 = push;