소스 검색

Fix a bug where the helper respawned on updates.

Tobias Hieta 9 년 전
부모
커밋
6d727323be
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/utils/HelperLauncher.cpp

+ 1 - 1
src/utils/HelperLauncher.cpp

@@ -177,6 +177,6 @@ QString HelperLauncher::HelperPath()
 void HelperLauncher::stop()
 {
   // this method needs to disconnect all signals from the helper as well, so it doesn't start up again.
-  disconnect(m_jsonClient);
+  m_jsonClient->disconnect();
   killHelper();
 }