aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/fileops
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2009-06-27 19:40:50 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2009-06-27 19:40:50 +0000
commit86b286afbd21677e735fad95af056ce412b06fd7 (patch)
tree803715decb7ecbe68aa31ba1a87c5b94d683da69 /src/plugins/General/fileops
parent237e829460dd7289ef54a4d8d38a9d378466a3ad (diff)
downloadqmmp-86b286afbd21677e735fad95af056ce412b06fd7.tar.gz
qmmp-86b286afbd21677e735fad95af056ce412b06fd7.tar.bz2
qmmp-86b286afbd21677e735fad95af056ce412b06fd7.zip
fileops plugin: do not convert spaces to '_'
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@983 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/fileops')
-rw-r--r--src/plugins/General/fileops/fileops.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/General/fileops/fileops.cpp b/src/plugins/General/fileops/fileops.cpp
index e67f7ae30..a25d617aa 100644
--- a/src/plugins/General/fileops/fileops.cpp
+++ b/src/plugins/General/fileops/fileops.cpp
@@ -197,7 +197,7 @@ QString FileOps::generateFileName(PlayListItem *item, QString pattern)
fname = printTag(fname, "%g", item->genre(), pattern);
fname = printTag(fname, "%f", item->url().section('/',-1), pattern);
fname = printTag(fname, "%y", QString("%1").arg(item->year ()), pattern);
- fname.replace(" ", "_");
+ //fname.replace(" ", "_");
if (fname.isEmpty())
{
if (item->url().contains('/'))