]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Fix style, not space between method name and (; improve wording
authorAhmad Samir <a.samirh78@gmail.com>
Sun, 13 Sep 2020 20:14:34 +0000 (22:14 +0200)
committerAhmad Samir <a.samirh78@gmail.com>
Sun, 13 Sep 2020 20:14:34 +0000 (22:14 +0200)
GIT_SILENT

src/panels/terminal/terminalpanel.cpp
src/panels/terminal/terminalpanel.h

index 52ff494b2cbd453a3b1a05454854df0f18d3f75e..714431c71e6c9bc75cb9aedd9d571e7174d96c44 100644 (file)
@@ -200,7 +200,7 @@ void TerminalPanel::changeDir(const QUrl& url)
         return;
     }
 
-    // Last chance, try kio fuse
+    // Last chance, try KIOFuse
     sendCdToTerminalKIOFuse(url);
 }
 
@@ -239,7 +239,7 @@ void TerminalPanel::sendCdToTerminal(const QString& dir, HistoryPolicy addToHist
     }
 }
 
-void TerminalPanel::sendCdToTerminalKIOFuse (const QUrl &url) {
+void TerminalPanel::sendCdToTerminalKIOFuse(const QUrl &url) {
     // URL isn't local, only hope for the terminal to be in sync with the
     // DolphinView is to mount the remote URL in KIOFuse and point to it.
     // If we can't do that for any reason, silently fail.
index 82c2c3fc767863f313421f0aaaf26e9f95aad8fb..35de108df3641d66899f4ca43adfc84cdfd3c60c 100644 (file)
@@ -77,7 +77,7 @@ private:
 
     void changeDir(const QUrl& url);
     void sendCdToTerminal(const QString& path, HistoryPolicy addToHistory = HistoryPolicy::AddToHistory);
-    void sendCdToTerminalKIOFuse (const QUrl &url);
+    void sendCdToTerminalKIOFuse(const QUrl &url);
 private:
     bool m_clearTerminal;
     KIO::StatJob* m_mostLocalUrlJob;