* updated arts (1.2.3) * updated kde (3.2.3) * updated kdevelop (3.0.4) [2004061015192108507] (https://www.rocklinux.net/submaster) git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@3199 c5f82cb5-29bc-0310-9cd0-bff59a50e3bcrocklinux
@ -1,37 +0,0 @@ |
|||||
diff -rduN kdelibs-old/kdecore/kapplication.cpp kdelibs-new/kdecore/kapplication.cpp
|
|
||||
--- kdelibs-old/kdecore/kapplication.cpp 2004-04-04 11:08:10.000000000 +0200
|
|
||||
+++ kdelibs-new/kdecore/kapplication.cpp 2004-05-18 16:54:14.000000000 +0200
|
|
||||
@@ -2165,7 +2165,7 @@
|
|
||||
|
|
||||
if (command.isEmpty() || command == QString::fromLatin1("kmail") |
|
||||
|| command.endsWith("/kmail")) |
|
||||
- command = QString::fromLatin1("kmail --composer -s %s -c %c -b %b --body %B --attach %A %t");
|
|
||||
+ command = QString::fromLatin1("kmail --composer -s %s -c %c -b %b --body %B --attach %A -- %t");
|
|
||||
|
|
||||
// TODO: Take care of the preferred terminal app (instead of hardcoding |
|
||||
// Konsole), this will probably require a rewrite of the configurable |
|
||||
diff -rduN kdelibs-old/kio/misc/ktelnetservice.cpp kdelibs-new/kio/misc/ktelnetservice.cpp
|
|
||||
--- kdelibs-old/kio/misc/ktelnetservice.cpp 2004-02-28 10:50:23.000000000 +0100
|
|
||||
+++ kdelibs-new/kio/misc/ktelnetservice.cpp 2004-05-18 17:06:26.000000000 +0200
|
|
||||
@@ -77,10 +77,19 @@
|
|
||||
cmd << url.user(); |
|
||||
} |
|
||||
|
|
||||
+ QString host;
|
|
||||
if (!url.host().isEmpty()) |
|
||||
- cmd << url.host(); // telnet://host
|
|
||||
+ host = url.host(); // telnet://host
|
|
||||
else if (!url.path().isEmpty()) |
|
||||
- cmd << url.path(); // telnet:host
|
|
||||
+ host = url.path(); // telnet:host
|
|
||||
+
|
|
||||
+ if (host.isEmpty() || host.startsWith("-"))
|
|
||||
+ {
|
|
||||
+ kdError() << "Invalid hostname " << host << endl;
|
|
||||
+ return 2;
|
|
||||
+ }
|
|
||||
+
|
|
||||
+ cmd << host;
|
|
||||
|
|
||||
if (url.port()){ |
|
||||
if ( url.protocol() == "ssh" ) |
|
||||