GUI: One messagebox was missing "this" parameter.

This commit is contained in:
Kimmo Varis 2009-06-09 17:03:38 +03:00
parent 4c7793237a
commit 7efd4e48b8
1 changed files with 2 additions and 1 deletions

View File

@ -386,7 +386,8 @@ void ResultsTree::StartApplication(QStandardItem *target, int application)
{
QMessageBox msg(QMessageBox::Warning,
tr("Cppcheck"),
tr("You can open this error by specifying applications in program's settings."));
tr("You can open this error by specifying applications in program's settings.",
this));
msg.exec();
return;
}