Changeset 106351 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Oct 16, 2024 10:45:04 AM (4 months ago)
- svn:sync-xref-src-repo-rev:
- 165164
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxAboutDlg.cpp
r106061 r106351 27 27 28 28 /* Qt includes: */ 29 #include <QGuiApplication> 29 30 #include <QEvent> 30 31 #include <QLabel> … … 118 119 m_strAboutText = strAboutText + "\n" + strVersionText.arg(m_strVersion); 119 120 #endif 120 m_strAboutText = m_strAboutText + QString(" (Qt%1)").arg(qVersion()); 121 QString strPlatformName = QGuiApplication::platformName(); 122 if (strPlatformName.isEmpty()) 123 m_strAboutText = m_strAboutText + QString(" (Qt%1)").arg(qVersion()); 124 else 125 m_strAboutText = m_strAboutText + QString(" (Qt%1 on %2)").arg(qVersion()).arg(strPlatformName); 121 126 m_strAboutText = m_strAboutText + "\n" + QString("Copyright %1 %2 %3.") 122 127 .arg(QChar(0xa9)).arg(VBOX_C_YEAR).arg(VBOX_VENDOR);
Note:
See TracChangeset
for help on using the changeset viewer.