Multi device support: added Qt version in main window status bar

This commit is contained in:
f4exb 2016-05-15 04:51:34 +02:00
parent 4027b00675
commit 5dacda7f59
1 changed files with 2 additions and 1 deletions

View File

@ -348,7 +348,8 @@ void MainWindow::savePresetSettings(Preset* preset)
void MainWindow::createStatusBar()
{
m_showSystemWidget = new QLabel("SDRangel v2.0.0 " + QSysInfo::prettyProductName(), this);
QString qtVersionStr = QString("Qt %1 ").arg(QT_VERSION_STR);
m_showSystemWidget = new QLabel("SDRangel v2.0.0 " + qtVersionStr + QSysInfo::prettyProductName(), this);
statusBar()->addPermanentWidget(m_showSystemWidget);
m_dateTimeWidget = new QLabel(tr("Date"), this);