summaryrefslogtreecommitdiff
path: root/sysutils/cdbakeoven/files/patch-cdbakeoven::dialogs::CdboDialogActionFactory.cpp
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2008-02-28 01:07:11 +0000
committerMartin Wilke <miwi@FreeBSD.org>2008-02-28 01:07:11 +0000
commit476cb9b10421c4f3fef541659f7ed8a6900a9d11 (patch)
tree9f6ed17a36b7b2c92c8ce02cd5de339109873628 /sysutils/cdbakeoven/files/patch-cdbakeoven::dialogs::CdboDialogActionFactory.cpp
parent- Update to 0.17.2 (diff)
2007-11-22 x11-themes/indubstrial: yes
2008-01-14 x11-themes/gtk-smooth-engine: Redundant port (now included in gtk-engines), no release since 2005 2007-09-21 security/amavis-perl: depends on misc/compat3x, which has security problems 2007-12-31 sysutils/cdbakeoven: Abandonware 2008-01-04 net/gnu-finger: no active development and known security vulnerabilities. 2007-11-16 misc/seizedesktop: development stalled for years, outdated, unmaintained
Notes
Notes: svn path=/head/; revision=208040
Diffstat (limited to 'sysutils/cdbakeoven/files/patch-cdbakeoven::dialogs::CdboDialogActionFactory.cpp')
-rw-r--r--sysutils/cdbakeoven/files/patch-cdbakeoven::dialogs::CdboDialogActionFactory.cpp43
1 files changed, 0 insertions, 43 deletions
diff --git a/sysutils/cdbakeoven/files/patch-cdbakeoven::dialogs::CdboDialogActionFactory.cpp b/sysutils/cdbakeoven/files/patch-cdbakeoven::dialogs::CdboDialogActionFactory.cpp
deleted file mode 100644
index 70fc1cce34d7..000000000000
--- a/sysutils/cdbakeoven/files/patch-cdbakeoven::dialogs::CdboDialogActionFactory.cpp
+++ /dev/null
@@ -1,43 +0,0 @@
---- cdbakeoven/dialogs/CdboDialogActionFactory.cpp Tue Jan 21 11:11:55 2003
-+++ cdbakeoven/dialogs/CdboDialogActionFactory.cpp.orig Tue Jan 21 11:11:58 2003
-@@ -385,9 +385,12 @@
- user->status(i18n("Reading CDROM..."));
- *out += ".iso";
- cdboProc = new KProcess();
-- *cdboProc << "dd";
-- *cdboProc << "if=" + in;
-- *cdboProc << "of=" + *out + "";
-+ *cdboProc << "readcd";
-+ *cdboProc << "dev=" + user->getScsiDevice();
-+ *cdboProc << "-q";
-+ *cdboProc << "retries=32";
-+ *cdboProc << "-s";
-+ *cdboProc << "f=" + *out;
- }
- //---------------------------------------------------------------------------------------------
- void CdboDialogActionFactory::initBurnProcess(QString image, bool audio ){
-@@ -517,6 +520,7 @@
- strBuff.prepend("'" + tmpLbl->text());
- strBuff.append("'");
- *cdboShellProc << strBuff;*/
-+ image.replace(QRegExp("'"),"");
-
- if(image == "-")
- *cdboShellProc << " - ";
-@@ -1132,7 +1136,7 @@
- KRun::shellQuote( file );
- KRun::shellQuote(outName);
- if(mType.find("x-mp3") != -1){
-- *cdboShellProc << "mpg123 -v -s " + file + " > " + outName;
-+ *cdboShellProc << "mpg123 -v -w " + outName + " " + file;
- tmpList->append(outName);
- tracksList->append(outName);
- return true;
-@@ -1519,6 +1523,7 @@
- void CdboDialogActionFactory::removeOneFile(QString fileName){
- if(!fileName) return;
-
-+ fileName.replace(QRegExp("'"),"");
- if(!QFile::remove(fileName))
- user->output(CdboDialogBase::ErrorMessage, i18n("Failed to remove ") + fileName + "!");
- }