Changeset 98607 in vbox for trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineWindow.cpp
- Timestamp:
- Feb 16, 2023 4:02:34 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 155899
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineWindow.cpp
r98605 r98607 54 54 55 55 /* COM includes: */ 56 #include "CConsole.h"57 56 #include "CGraphicsAdapter.h" 58 57 #include "CSnapshot.h" … … 227 226 } 228 227 229 CConsole& UIMachineWindow::console() const230 {231 return uisession()->console();232 }233 234 228 QString UIMachineWindow::machineName() const 235 229 { … … 430 424 /* Prepare close-dialog: */ 431 425 QWidget *pParentDlg = windowManager().realParentWindow(this); 426 bool fInACPIMode = false; 427 uimachine()->acquireWhetherGuestEnteredACPIMode(fInACPIMode); 432 428 QPointer<UIVMCloseDialog> pCloseDlg = new UIVMCloseDialog(pParentDlg, machine(), 433 console().GetGuestEnteredACPIMode(),429 fInACPIMode, 434 430 restrictedCloseActions); 435 431 /* Configure close-dialog: */
Note:
See TracChangeset
for help on using the changeset viewer.