Skip to content

Commit a43a287

Browse files
committed
don't close qgis_help when qgis closes (fixes #8305)
1 parent de581ee commit a43a287

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/core/qgscontexthelp.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
#include <QString>
2020
#include <QProcess>
21-
#include <QTcpSocket>
2221
#include <QTextStream>
2322

2423
#include "qgscontexthelp.h"
@@ -61,9 +60,6 @@ QProcess *QgsContextHelp::start()
6160
// Delete this object if the process terminates
6261
connect( process, SIGNAL( finished( int, QProcess::ExitStatus ) ), SLOT( processExited() ) );
6362

64-
// Delete the process if the application quits
65-
connect( qApp, SIGNAL( aboutToQuit() ), process, SLOT( terminate() ) );
66-
6763
connect( process, SIGNAL( error( QProcess::ProcessError ) ), this, SLOT( error( QProcess::ProcessError ) ) );
6864

6965
#ifdef Q_OS_WIN

0 commit comments

Comments
 (0)