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:
Kimmo Varis 2010-09-01 19:42:28 +03:00
parent eb74bfc15a
commit 6777718403
1 changed files with 2 additions and 2 deletions

View File

@ -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)