Hi,
I add a patch that starts jackd without path and any options if nothing is 
configured. This might help newbies to get sound out easy.

Eckhard
Index: rosegardengui.cpp
===================================================================
RCS file: /cvsroot/rosegarden/gui/rosegardengui.cpp,v
retrieving revision 1.811
diff -u -r1.811 rosegardengui.cpp
--- rosegardengui.cpp	4 Mar 2005 15:28:07 -0000	1.811
+++ rosegardengui.cpp	13 Mar 2005 18:42:25 -0000
@@ -1980,7 +1980,7 @@
 
     QString target;
 
-    if (KIO::NetAccess::download(url, target) == false) {
+    if (KIO::NetAccess::download(url, target, this) == false) {
         KMessageBox::error(this, i18n("Cannot download file %1").arg(url.prettyURL()));
         return;
     }
@@ -2040,7 +2040,7 @@
     
     QString target;
 
-    if (KIO::NetAccess::download(url, target) == false) {
+    if (KIO::NetAccess::download(url, target, this) == false) {
         KMessageBox::error(this, i18n("Cannot download file %1").arg(url.prettyURL()));
         return;
     }
@@ -3249,7 +3249,7 @@
     if (url.isEmpty()) { return; }
 
     QString tmpfile;
-    KIO::NetAccess::download(url, tmpfile);
+    KIO::NetAccess::download(url, tmpfile, this);
     openFile(tmpfile, ImportMIDI); // does everything including setting the document
 
     KIO::NetAccess::removeTempFile( tmpfile );
@@ -3264,7 +3264,7 @@
     if (url.isEmpty()) { return; }
 
     QString tmpfile;
-    KIO::NetAccess::download(url, tmpfile);
+    KIO::NetAccess::download(url, tmpfile, this);
     mergeFile(tmpfile, ImportMIDI);
 
     KIO::NetAccess::removeTempFile( tmpfile );
@@ -3412,7 +3412,7 @@
     if (url.isEmpty()) { return; }
 
     QString tmpfile;
-    KIO::NetAccess::download(url, tmpfile);
+    KIO::NetAccess::download(url, tmpfile, this);
     openFile(tmpfile, ImportRG21);
 
     KIO::NetAccess::removeTempFile(tmpfile);
@@ -3427,7 +3427,7 @@
     if (url.isEmpty()) { return; }
 
     QString tmpfile;
-    KIO::NetAccess::download(url, tmpfile);
+    KIO::NetAccess::download(url, tmpfile, this);
     mergeFile(tmpfile, ImportRG21);
 
     KIO::NetAccess::removeTempFile( tmpfile );
@@ -3494,7 +3494,7 @@
     if (url.isEmpty()) { return; }
 
     QString tmpfile;
-    KIO::NetAccess::download(url, tmpfile);
+    KIO::NetAccess::download(url, tmpfile,this);
     openFile(tmpfile, ImportHydrogen);
 
     KIO::NetAccess::removeTempFile(tmpfile);
@@ -3509,7 +3509,7 @@
     if (url.isEmpty()) { return; }
 
     QString tmpfile;
-    KIO::NetAccess::download(url, tmpfile);
+    KIO::NetAccess::download(url, tmpfile, this);
     mergeFile(tmpfile, ImportHydrogen);
 
     KIO::NetAccess::removeTempFile( tmpfile );
@@ -6602,7 +6602,7 @@
     if (url.isEmpty()) return;
 
     QString target;
-    if (KIO::NetAccess::download(url, target) == false) {
+    if (KIO::NetAccess::download(url, target, this) == false) {
         KMessageBox::error(this, i18n("Cannot download file %1")
                            .arg(url.prettyURL()));
         return;

Attachment: pgpwqPOYx91vC.pgp
Description: PGP signature

Reply via email to