summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2017-07-13 17:07:43 +0200
committerhjk <hjk@qt.io>2017-07-13 15:47:51 +0000
commit96a0d01196cb1b0bed54a5971e9cb5f345ed9aac (patch)
treeb33b0b8991883039031bbdd3fe1dc153346e5aff /src/plugins/remotelinux
parent3cd8ddc96684171500fae7d0a4eafd8eac6bb995 (diff)
downloadqt-creator-96a0d01196cb1b0bed54a5971e9cb5f345ed9aac.tar.gz
RemoteLinux: Implement FifoGatherer::stop()
... instead of onFinished(), which is on its way out. Should be the right think in theory and not make a difference in practice as the code appears to be unused right now. Change-Id: I5ef415fc0fab8902e8e31e75354a5943d99b2182 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/remotelinux')
-rw-r--r--src/plugins/remotelinux/abstractremotelinuxrunsupport.cpp4
-rw-r--r--src/plugins/remotelinux/abstractremotelinuxrunsupport.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/remotelinux/abstractremotelinuxrunsupport.cpp b/src/plugins/remotelinux/abstractremotelinuxrunsupport.cpp
index 15521b8ddb..d3131db2f7 100644
--- a/src/plugins/remotelinux/abstractremotelinuxrunsupport.cpp
+++ b/src/plugins/remotelinux/abstractremotelinuxrunsupport.cpp
@@ -90,10 +90,10 @@ void FifoGatherer::start()
m_fifoCreator.start(r, device());
}
-void FifoGatherer::onFinished()
+void FifoGatherer::stop()
{
m_fifoCreator.stop();
+ reportStopped();
}
-
} // namespace RemoteLinux
diff --git a/src/plugins/remotelinux/abstractremotelinuxrunsupport.h b/src/plugins/remotelinux/abstractremotelinuxrunsupport.h
index 2a6be032bc..4f6589ab1f 100644
--- a/src/plugins/remotelinux/abstractremotelinuxrunsupport.h
+++ b/src/plugins/remotelinux/abstractremotelinuxrunsupport.h
@@ -43,7 +43,7 @@ public:
private:
void start() override;
- void onFinished() override;
+ void stop() override;
void createRemoteFifo();