ui: fixed error circle for windows

<description>
This commit is contained in:
malte_langkabel
2016-04-26 17:36:14 +02:00
parent 32dc545a60
commit 9a92422984
+1 -1
View File
@@ -67,7 +67,7 @@ void QtStatusBar::setErrorCount(ErrorCountInfo errorCount)
if (errorCount.total > 0)
{
m_errorButton.setText(
QString::fromStdString("\u25CF ") + QString::number(errorCount.total) + " error" + (errorCount.total > 1 ? "s" : "") +
QChar(0x25CF) + QString::number(errorCount.total) + " error" + (errorCount.total > 1 ? "s" : "") +
(errorCount.fatal > 0 ? " (" + QString::number(errorCount.fatal) + " fatal)" : ""));
m_errorButton.show();
}