Skip to content
Permalink
Browse files
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/qgis@5628 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Jul 24, 2006
1 parent 14e1c86 commit ea8582d
Showing 1 changed file with 1 addition and 1 deletion.
@@ -88,7 +88,7 @@ QProcess *QgsContextHelp::start(int contextId)
SLOT(processExited()));

// Delete the process if the application quits
connect(qApp, SIGNAL(aboutToQuit()), process, SLOT(tryTerminate()));
connect(qApp, SIGNAL(aboutToQuit()), process, SLOT(terminate()));

return process;
}

0 comments on commit ea8582d

Please sign in to comment.