Changeset 87756 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Feb 15, 2021 10:34:48 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142808
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r87731 r87756 246 246 ifndef VBOX_WITHOUT_LESS_VIRTUALBOX_INCLUDING 247 247 UICommon_DEFS += VBOX_WITH_LESS_VIRTUALBOX_INCLUDING 248 endif 249 ifdef VBOX_WITH_QT_RUNTIME_PATCHING 250 UICommon_DEFS += \ 251 VBOX_WITH_QT_RUNTIME_PATCHING \ 252 IN_DIS \ 253 IN_DIS_STATIC \ 254 DIS_CORE_ONLY 248 255 endif 249 256 … … 1489 1496 src/platform/darwin/VBoxUtils-darwin.cpp 1490 1497 1498 ifdef VBOX_WITH_QT_RUNTIME_PATCHING 1499 UICommon_SOURCES += \ 1500 src/qtpatching.cpp \ 1501 ../../Disassembler/DisasmCore.cpp \ 1502 ../../Disassembler/DisasmTables.cpp \ 1503 ../../Disassembler/DisasmTablesX64.cpp \ 1504 ../../Disassembler/DisasmReg.cpp 1505 endif 1491 1506 1492 1507 # -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICommon.cpp
r87656 r87756 168 168 169 169 //#define VBOX_WITH_FULL_DETAILS_REPORT /* hidden for now */ 170 171 #ifdef VBOX_WITH_QT_RUNTIME_PATCHING 172 DECLHIDDEN(void) uiCommonQtRuntimePatch(void); 173 #endif 170 174 171 175 /* Namespaces: */ … … 4086 4090 #endif /* VBOX_WS_MAC */ 4087 4091 4092 #ifdef VBOX_WITH_QT_RUNTIME_PATCHING 4093 /* Patch some Qt modules to tailor the behavior towards our needs. */ 4094 uiCommonQtRuntimePatch(); 4095 #endif 4096 4088 4097 /* Prepare converter: */ 4089 4098 UIConverter::prepare();
Note:
See TracChangeset
for help on using the changeset viewer.