From 86b286afbd21677e735fad95af056ce412b06fd7 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sat, 27 Jun 2009 19:40:50 +0000 Subject: 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 --- src/plugins/General/fileops/fileops.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/General/fileops/fileops.cpp') 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('/')) -- cgit v1.2.3-13-gbd6f