Changeset 64762 in vbox for trunk/src/VBox
- Timestamp:
- Nov 28, 2016 3:49:53 PM (8 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QILineEdit.cpp
r63309 r64762 21 21 22 22 /* Qt includes: */ 23 # i nclude <QtGlobal> /* for QT_VERSION */24 # if QT_VERSION < 0x05000025 # if def VBOX_WS_WIN23 # ifdef VBOX_WS_WIN 24 # include <QtGlobal> /* for QT_VERSION */ 25 # if QT_VERSION < 0x050000 26 26 # include <QLibrary> 27 27 # endif … … 32 32 33 33 /* Other VBox includes: */ 34 # if QT_VERSION < 0x05000035 # if def VBOX_WS_WIN34 # ifdef VBOX_WS_WIN 35 # if QT_VERSION < 0x050000 36 36 # include "iprt/ldr.h" 37 37 # endif … … 39 39 40 40 /* External includes: */ 41 # if QT_VERSION < 0x05000042 # if def VBOX_WS_WIN41 # ifdef VBOX_WS_WIN 42 # if QT_VERSION < 0x050000 43 43 # include <iprt/win/windows.h> 44 44 # endif … … 49 49 /* Qt includes: */ 50 50 #include <QStyleOptionFrame> 51 #if QT_VERSION < 0x05000052 # if def VBOX_WS_WIN51 #ifdef VBOX_WS_WIN 52 # if QT_VERSION < 0x050000 53 53 # include <QWindowsVistaStyle> 54 54 # endif … … 81 81 QSize sa = style()->sizeFromContents (QStyle::CT_LineEdit, &sof, sc, this); 82 82 83 #if QT_VERSION < 0x05000084 # if def VBOX_WS_WIN83 #ifdef VBOX_WS_WIN 84 # if QT_VERSION < 0x050000 85 85 /* Vista l&f style has a bug where the last parameter of sizeFromContents 86 86 * function ('widget' what corresponds to 'this' in our class) is ignored. … … 99 99 sa -= QSize(23, 0); 100 100 } 101 # endif /* VBOX_WS_WIN*/102 #endif /* QT_VERSION < 0x050000*/101 # endif /* QT_VERSION < 0x050000 */ 102 #endif /* VBOX_WS_WIN */ 103 103 104 104 return sa; -
trunk/src/VBox/Frontends/VirtualBox/src/precomp.h
r64513 r64762 212 212 //#include <QXmlStreamReader> - only used once 213 213 //#include <QXmlStreamWriter> - only used once 214 #include <QtGlobal>215 214 216 215 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIKeyboardHandler.h
r63609 r64762 20 20 21 21 /* Qt includes: */ 22 #include <QtGlobal>23 22 #include <QMap> 24 23 #include <QObject> -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsStorage.h
r64492 r64762 20 20 21 21 /* Qt includes: */ 22 #include <QtGlobal> /* for VBOX_WS_MAC */23 22 #ifdef VBOX_WS_MAC 24 23 /* Somewhere Carbon.h includes AssertMacros.h which defines the macro "check".
Note:
See TracChangeset
for help on using the changeset viewer.