Skip to content

Commit

Permalink
Use the Qt4 slot for terminating a QProcess rather than the Qt3
Browse files Browse the repository at this point in the history
one. Removes a console warning message.


git-svn-id: http://svn.osgeo.org/qgis/trunk@5628 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Jul 24, 2006
1 parent e57f22e commit e851737
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgscontexthelp.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit e851737

Please sign in to comment.