Skip to content

Commit e851737

Browse files
author
g_j_m
committed
Use the Qt4 slot for terminating a QProcess rather than the Qt3
one. Removes a console warning message. git-svn-id: http://svn.osgeo.org/qgis/trunk@5628 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent e57f22e commit e851737

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/qgscontexthelp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ QProcess *QgsContextHelp::start(int contextId)
8888
SLOT(processExited()));
8989

9090
// Delete the process if the application quits
91-
connect(qApp, SIGNAL(aboutToQuit()), process, SLOT(tryTerminate()));
91+
connect(qApp, SIGNAL(aboutToQuit()), process, SLOT(terminate()));
9292

9393
return process;
9494
}

0 commit comments

Comments
 (0)