Changeset 73070 in vbox for trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsExtension.cpp
- Timestamp:
- Jul 11, 2018 3:52:53 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123630
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsExtension.cpp
r72435 r73070 23 23 # include <QHeaderView> 24 24 # include <QMenu> 25 # ifdef VBOX_WS_WIN 26 # include <QTextStream> 27 # endif 25 28 26 29 /* GUI includes: */ … … 372 375 QString displayInfo; 373 376 #ifdef VBOX_WS_WIN 374 displayInfo.sprintf("hwnd=%#llx", (uint64_t)(uintptr_t)this->winId()); 375 #endif /* VBOX_WS_WIN */ 377 QTextStream stream(&displayInfo); 378 stream.setNumberFlags(QTextStream::ShowBase); 379 stream.setIntegerBase(16); 380 stream << "hwnd=" << winId(); 381 #endif 382 376 383 /* Prepare uninstallation progress: */ 377 384 CProgress progress = manager.Uninstall(strSelectedPackageName, false /* forced removal? */, displayInfo);
Note:
See TracChangeset
for help on using the changeset viewer.