- Timestamp:
- Mar 6, 2010 12:39:30 PM (15 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r27096 r27130 499 499 } 500 500 #endif 501 vboxGlobal().setMainWindow (vboxGlobal().vmWindow()); 501 502 if (vboxGlobal().startMachine (vboxGlobal().managedVMUuid())) 502 {503 vboxGlobal().setMainWindow (vboxGlobal().vmWindow());504 503 rc = a.exec(); 505 }506 504 } 507 505 else if (noSelector) -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineWindowFullscreen.cpp
r27064 r27130 44 44 /* "This" is machine window: */ 45 45 m_pMachineWindow = this; 46 47 /* Set the main window in VBoxGlobal */ 48 if (uScreenId == 0) 49 vboxGlobal().setMainWindow(this); 46 50 47 51 /* Prepare window icon: */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineWindowNormal.cpp
r27098 r27130 51 51 m_pMachineWindow = this; 52 52 53 /* Set the main window in VBoxGlobal */ 54 if (uScreenId == 0) 55 vboxGlobal().setMainWindow(this); 56 53 57 /* Prepare window icon: */ 54 58 prepareWindowIcon(); -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineWindowSeamless.cpp
r27089 r27130 45 45 /* "This" is machine window: */ 46 46 m_pMachineWindow = this; 47 48 /* Set the main window in VBoxGlobal */ 49 if (uScreenId == 0) 50 vboxGlobal().setMainWindow(this); 47 51 48 52 /* Prepare window icon: */
Note:
See TracChangeset
for help on using the changeset viewer.