This commit is contained in:
Klaus Basan
2019-03-22 03:07:53 +01:00
committed by Mat Sutcliffe
parent 77a898c9ec
commit 6a2b0a89d1
8 changed files with 6 additions and 21 deletions

View File

@@ -30,6 +30,7 @@
#include <Qt>
#include <QtGlobal>
#include <QPointer>
#include <QStringBuilder>
#include <QTimer>
using namespace BlackConfig;
@@ -154,7 +155,7 @@ namespace BlackGui
{
// at least connected
const QString s(
sGui->getIContextSimulator()->getSimulatorPluginInfo().getDescription() + ": " +
sGui->getIContextSimulator()->getSimulatorPluginInfo().getDescription() % u": " %
ISimulator::statusToString(simStatus)
);
@@ -197,7 +198,7 @@ namespace BlackGui
break;
case INetwork::Connected:
ui->led_Network->setOn(true);
ui->led_Network->setOnToolTip("Connected: " + sGui->getIContextNetwork()->getConnectedServer().getName());
ui->led_Network->setOnToolTip(u"Connected: " % sGui->getIContextNetwork()->getConnectedServer().getName());
break;
case INetwork::Connecting:
ui->led_Network->setTriStateColor(CLedWidget::Yellow);