GUI: Fix slot name for debugerrors.
Now DebugErrors get correctly routed to check log. The wrong slot name also caused a warning printed to the console as reported by thevbm in ticket #2006.
This commit is contained in:
parent
eb74bfc15a
commit
6777718403
|
@ -152,8 +152,8 @@ void ThreadHandler::Initialize(ResultsView *view)
|
|||
connect(&mResults, SIGNAL(Log(const QString &)),
|
||||
parent(), SLOT(Log(const QString &)));
|
||||
|
||||
connect(&mResults, SIGNAL(Error(const ErrorItem &)),
|
||||
parent(), SLOT(Error(const ErrorItem &)));
|
||||
connect(&mResults, SIGNAL(DebugError(const ErrorItem &)),
|
||||
parent(), SLOT(DebugError(const ErrorItem &)));
|
||||
}
|
||||
|
||||
void ThreadHandler::LoadSettings(QSettings &settings)
|
||||
|
|
Loading…
Reference in New Issue