31 lines
1005 B
Diff
31 lines
1005 B
Diff
|
From: Martin Koller <kollix@aon.at>
|
||
|
Date: Mon, 26 Oct 2015 21:12:35 +0000
|
||
|
Subject: revert "fix" which adds literal quote chars to the filename
|
||
|
X-Git-Url: http://quickgit.kde.org/?p=k3b.git&a=commitdiff&h=9f109bbc7fe718135da402535f6ca7ca5c105d4d
|
||
|
---
|
||
|
revert "fix" which adds literal quote chars to the filename
|
||
|
|
||
|
commit 2786d19f added explicit quote characters around the filename,
|
||
|
which is wrong since the filename is passed into a QStringList,
|
||
|
which passes all its separate arguments to the started process.
|
||
|
Adding quote chars would lead to the filename having the
|
||
|
quote chars as part of the filename.
|
||
|
|
||
|
BUG: 350403
|
||
|
REVIEW: 125804
|
||
|
---
|
||
|
|
||
|
|
||
|
--- a/libk3b/jobs/k3bvideodvdtitletranscodingjob.cpp
|
||
|
+++ b/libk3b/jobs/k3bvideodvdtitletranscodingjob.cpp
|
||
|
@@ -303,7 +303,7 @@
|
||
|
}
|
||
|
|
||
|
// the output filename
|
||
|
- *d->process << "-o" << QString("\"%1\"").arg(m_filename);
|
||
|
+ *d->process << "-o" << m_filename;
|
||
|
}
|
||
|
else {
|
||
|
// gather information about the video stream, ignore audio
|
||
|
|