Changeset 61047 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- May 19, 2016 1:54:00 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r60865 r61047 54 54 #ifdef VBOX_WS_X11 55 55 # ifdef Q_OS_SOLARIS 56 # include <QPlastiqueStyle> 56 # if QT_VERSION < 0x050000 57 # include <QPlastiqueStyle> 58 # endif /* QT_VERSION < 0x050000 */ 57 59 # endif /* Q_OS_SOLARIS */ 58 60 # ifndef Q_OS_SOLARIS … … 473 475 474 476 # ifdef Q_OS_SOLARIS 477 # if QT_VERSION < 0x050000 475 478 /* Use plastique look&feel for Solaris instead of the default motif (Qt 4.7.x): */ 476 479 QApplication::setStyle(new QPlastiqueStyle); 480 # else /* QT_VERSION >= 0x050000 */ 481 a.setStyle("fusion"); 482 # endif /* QT_VERSION >= 0x050000 */ 477 483 # endif /* Q_OS_SOLARIS */ 478 484 … … 599 605 600 606 #ifdef Q_OS_SOLARIS 607 # if QT_VERSION < 0x050000 601 608 /* Use plastique look&feel for Solaris instead of the default motif (Qt 4.7.x): */ 602 609 QApplication::setStyle(new QPlastiqueStyle); 610 #else /* QT_VERSION >= 0x050000 */ 611 a.setStyle("fusion"); 612 # endif /* QT_VERSION >= 0x050000 */ 603 613 #endif /* Q_OS_SOLARIS */ 604 614
Note:
See TracChangeset
for help on using the changeset viewer.