Changeset 61961 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jun 30, 2016 3:56:12 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108407
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/UIVMLogViewer.cpp
r60362 r61961 26 26 # include <QDir> 27 27 # include <QFileDialog> 28 #if defined(RT_OS_SOLARIS) 29 # include <QFontDatabase> 30 # endif 28 31 # include <QKeyEvent> 29 32 # include <QLabel> … … 1177 1180 { 1178 1181 /* Configure Log-Viewer: */ 1182 #if defined(RT_OS_SOLARIS) 1183 /* Use system fixed-width font on Solaris hosts as the Courier family fonts don't render well. */ 1184 QFont font = QFontDatabase::systemFont(QFontDatabase::FixedFont); 1185 #else 1179 1186 QFont font = pLogViewer->currentFont(); 1180 1187 font.setFamily("Courier New,courier"); 1188 #endif 1181 1189 pLogViewer->setFont(font); 1182 1190 pLogViewer->setWordWrapMode(QTextOption::NoWrap);
Note:
See TracChangeset
for help on using the changeset viewer.