Skip to content

Commit

Permalink
runner: target correct object with invokeMethod (#47980)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkarneges authored May 2, 2024
1 parent e8891f6 commit 99a2ea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpp/runner/service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ void Service::start()
if(!preStart())
{
QString str = "Failure preparing to start";
QMetaObject::invokeMethod(this, "doError", Qt::QueuedConnection, Q_ARG(QString, str));
QMetaObject::invokeMethod(d, "doError", Qt::QueuedConnection, Q_ARG(QString, str));
return;
}

Expand Down

0 comments on commit 99a2ea5

Please sign in to comment.