┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/panels
diff options
context:
space:
mode:
authorChristian Ehrlicher <[email protected]>2009-03-15 20:20:33 +0000
committerChristian Ehrlicher <[email protected]>2009-03-15 20:20:33 +0000
commitaf49caa18e3930dc7115f56c402f6d27e2c42ef4 (patch)
tree80d23c085b24991228291f68a3f71b73e476e0ec /src/panels
parent88a6794501a75a8e672af933a03ea96885c12641 (diff)
a lot of more KUrl::path() -> KUrl::toLocalFile() changes (mostly after a check for KUrl::isLocalFile())
svn path=/trunk/KDE/kdebase/apps/; revision=939835
Diffstat (limited to 'src/panels')
-rw-r--r--src/panels/terminal/terminalpanel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panels/terminal/terminalpanel.cpp b/src/panels/terminal/terminalpanel.cpp
index cc3b85318..593015147 100644
--- a/src/panels/terminal/terminalpanel.cpp
+++ b/src/panels/terminal/terminalpanel.cpp
@@ -56,7 +56,7 @@ void TerminalPanel::setUrl(const KUrl& url)
Panel::setUrl(url);
if ((m_terminal != 0) && isVisible() && url.isLocalFile()) {
- m_terminal->sendInput("cd " + KShell::quoteArg(url.path()) + '\n');
+ m_terminal->sendInput("cd " + KShell::quoteArg(url.toLocalFile()) + '\n');
}
}