Changeset 101554 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Oct 23, 2023 2:16:21 PM (16 months ago)
- svn:sync-xref-src-repo-rev:
- 159631
- Location:
- trunk/src/VBox/Debugger
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/Makefile.kmk
r99853 r101554 141 141 # Debugger GUI component (Qt). 142 142 # 143 ifndef VBOX_WITH_QT6 144 USES += qt5 145 else 146 USES += qt6 147 endif 143 USES += qt6 148 144 DLLS += VBoxDbg 149 145 VBoxDbg_TEMPLATE = VBoxQtGuiDll 150 146 VBoxDbg_DEFS = IN_DBG_R3 151 ifdef VBOX_WITH_QT6152 VBoxDbg_DEFS += VBOX_IS_QT6_OR_LATER153 endif154 147 VBoxDbg_INCS = . 155 148 VBoxDbg_QT_MODULES = Core Gui Widgets … … 164 157 VBoxDbgConsole.cpp \ 165 158 VBoxDbgStatsQt.cpp 166 ifdef VBOX_WITH_QT6 167 VBoxDbg_CXXFLAGS.win += /permissive- 168 endif 159 VBoxDbg_CXXFLAGS.win += /permissive- 169 160 VBoxDbg_LDFLAGS.darwin = \ 170 161 -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxDbg.dylib -
trunk/src/VBox/Debugger/VBoxDbgGui.cpp
r101107 r101554 330 330 if (SUCCEEDED(hrc)) 331 331 { 332 #ifndef VBOX_IS_QT6_OR_LATER333 strName = QString::fromUtf16((const ushort *)bstr);334 #else335 332 strName = QString::fromUtf16((const char16_t *)bstr); 336 #endif337 333 SysFreeString(bstr); 338 334 }
Note:
See TracChangeset
for help on using the changeset viewer.