summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Callen <abcd@gentoo.org>2009-12-10 19:29:35 +0000
committerJonathan Callen <abcd@gentoo.org>2009-12-10 19:29:35 +0000
commitd012303abe9f4390be194eaadfb9c7a7f35c78fb (patch)
tree029bfe1527af9335f3912c6e8d08760a1866a415 /kde-base/dolphin/files
parentAdd ~sparc (diff)
downloadgentoo-2-d012303abe9f4390be194eaadfb9c7a7f35c78fb.tar.gz
gentoo-2-d012303abe9f4390be194eaadfb9c7a7f35c78fb.tar.bz2
gentoo-2-d012303abe9f4390be194eaadfb9c7a7f35c78fb.zip
Drop old patch
(Portage version: -svn/cvs/Linux i686)
Diffstat (limited to 'kde-base/dolphin/files')
-rw-r--r--kde-base/dolphin/files/dolphin-4.3.1-fix-sftp-crash.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/kde-base/dolphin/files/dolphin-4.3.1-fix-sftp-crash.patch b/kde-base/dolphin/files/dolphin-4.3.1-fix-sftp-crash.patch
deleted file mode 100644
index a8f0551a9a9c..000000000000
--- a/kde-base/dolphin/files/dolphin-4.3.1-fix-sftp-crash.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-Index: dolphin/src/panels/terminal/terminalpanel.cpp
-===================================================================
---- dolphin/src/panels/terminal/terminalpanel.cpp (revision 1032179)
-+++ dolphin/src/panels/terminal/terminalpanel.cpp (revision 1032180)
-@@ -23,7 +23,6 @@
- #include <kde_terminal_interface_v2.h>
- #include <kparts/part.h>
- #include <kshell.h>
--#include <kio/netaccess.h>
-
- #include <QBoxLayout>
- #include <QShowEvent>
-@@ -58,13 +57,12 @@
- }
-
- Panel::setUrl(url);
-- KUrl mostLocalUrl = KIO::NetAccess::mostLocalUrl(url, 0);
- const bool sendInput = (m_terminal != 0)
- && (m_terminal->foregroundProcessId() == -1)
- && isVisible()
-- && mostLocalUrl.isLocalFile();
-+ && url.isLocalFile();
- if (sendInput) {
-- m_terminal->sendInput("cd " + KShell::quoteArg(mostLocalUrl.toLocalFile()) + '\n');
-+ m_terminal->sendInput("cd " + KShell::quoteArg(url.toLocalFile()) + '\n');
- }
-
- }