Issue #15 [GUI] Avoid using CLogComponent to display non-log messages

This commit is contained in:
Mat Sutcliffe
2020-04-30 19:22:13 +01:00
parent 7382564633
commit 3b1e10b51e
5 changed files with 15 additions and 13 deletions

View File

@@ -121,7 +121,9 @@ namespace BlackGui
void CSetupLoadingDialog::displayGlobalSetup()
{
const QString gs = sApp->getGlobalSetup().convertToQString("\n", true);
ui->comp_Messages->appendPlainTextToConsole(gs);
Q_UNUSED(gs)
//ui->comp_Messages->appendPlainTextToConsole(gs);
//! \fixme create plain text console for this (used to be part of the log component, changed by issue T36)
}
void CSetupLoadingDialog::openHelpPage()