Changeset 61028 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- May 18, 2016 8:21:22 AM (9 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r60770 r61028 492 492 src/wizards/importappliance/UIWizardImportAppPageExpert.h \ 493 493 src/wizards/firstrun/UIWizardFirstRun.h \ 494 src/wizards/firstrun/UIWizardFirstRunPageBasic.h 494 src/wizards/firstrun/UIWizardFirstRunPageBasic.h \ 495 src/runtime/information/UIInformation.h \ 496 src/runtime/information/UIInformationDataItem.h \ 497 src/runtime/information/UIInformationItem.h \ 498 src/runtime/information/UIInformationModel.h \ 499 src/runtime/information/UIInformationRuntime.h \ 500 src/runtime/information/UIInformationView.h \ 501 src/runtime/information/UIVMInformationDialog.h 495 502 496 503 ifdef VBOX_GUI_WITH_NETWORK_MANAGER … … 783 790 src/wizards/importappliance/UIWizardImportAppPageExpert.cpp \ 784 791 src/wizards/firstrun/UIWizardFirstRun.cpp \ 785 src/wizards/firstrun/UIWizardFirstRunPageBasic.cpp 792 src/wizards/firstrun/UIWizardFirstRunPageBasic.cpp \ 793 src/runtime/information/UIInformation.cpp \ 794 src/runtime/information/UIInformationDataItem.cpp \ 795 src/runtime/information/UIInformationItem.cpp \ 796 src/runtime/information/UIInformationModel.cpp \ 797 src/runtime/information/UIInformationRuntime.cpp \ 798 src/runtime/information/UIInformationView.cpp \ 799 src/runtime/information/UIVMInformationDialog.cpp 786 800 787 801 ifdef VBOX_GUI_WITH_NETWORK_MANAGER -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp
r60591 r61028 65 65 # include "UIExtraDataManager.h" 66 66 # include "UIAddDiskEncryptionPasswordDialog.h" 67 # include "UIVMInformationDialog.h" 67 68 # ifdef VBOX_WS_MAC 68 69 # include "DockIconPreview.h" … … 115 116 #endif /* VBOX_WS_X11 */ 116 117 118 #define VBOX_WITH_REWORKED_SESSION_INFORMATION /* Define for reworked session-information window: */ 117 119 118 120 struct USBTarget … … 1543 1545 1544 1546 /* Invoke VM information dialog: */ 1547 #ifdef VBOX_WITH_REWORKED_SESSION_INFORMATION 1548 UIVMInformationDialog::invoke(mainMachineWindow()); 1549 #else /* !VBOX_WITH_REWORKED_SESSION_INFORMATION */ 1545 1550 UIVMInfoDialog::invoke(mainMachineWindow()); 1551 #endif /* !VBOX_WITH_REWORKED_SESSION_INFORMATION */ 1546 1552 } 1547 1553
Note:
See TracChangeset
for help on using the changeset viewer.