From 5cd1c1b3274467da87fbee2bde1a7ef0381e59ec Mon Sep 17 00:00:00 2001 From: Arto Jonsson Date: Thu, 14 May 2009 22:18:52 +0300 Subject: [PATCH] Fix non-working engine debug log. The slot is 'appendPlainText' not 'append'. --- projects/gui/src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/gui/src/mainwindow.cpp b/projects/gui/src/mainwindow.cpp index 0adcfe2..cc8b27b 100644 --- a/projects/gui/src/mainwindow.cpp +++ b/projects/gui/src/mainwindow.cpp @@ -217,7 +217,7 @@ void MainWindow::newGame() connect(chessgame, SIGNAL(gameEnded()), m_chessClock[i], SLOT(stop())); connect(player[i], SIGNAL(debugMessage(const QString&)), - m_engineDebugLog, SLOT(append(const QString&))); + m_engineDebugLog, SLOT(appendPlainText(const QString&))); } m_boardModel->setBoard(chessgame->board()); -- 2.11.4.GIT