Changeset 98806 in vbox
- Timestamp:
- Mar 1, 2023 3:37:05 PM (21 months ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.cpp
r98801 r98806 60 60 #include "CExtPack.h" 61 61 #include "CGraphicsAdapter.h" 62 #include "CGuestOSType.h" 62 63 #include "CHostNetworkInterface.h" 63 64 #include "CHostOnlyNetwork.h" … … 752 753 QApplication::translate("UIMessageCenter", "Failed to acquire guest parameter.") + 753 754 UIErrorString::formatErrorInfo(comGuest)); 755 } 756 757 /* static */ 758 void UINotificationMessage::cannotAcquireGuestOSTypeParameter(const CGuestOSType &comGuestOSType) 759 { 760 createMessage( 761 QApplication::translate("UIMessageCenter", "Guest OS type failure ..."), 762 QApplication::translate("UIMessageCenter", "Failed to acquire guest OS type parameter.") + 763 UIErrorString::formatErrorInfo(comGuestOSType)); 754 764 } 755 765 -
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.h
r98801 r98806 72 72 class CCloudProfile; 73 73 class CEmulatedUSB; 74 class CGuestOSType; 74 75 class CKeyboard; 75 76 class CMachineDebugger; … … 326 327 * @param comGuest Brings the object parameter get acquired from. */ 327 328 static void cannotAcquireGuestParameter(const CGuest &comGuest); 329 /** Notifies about inability to acquire IGuestOSType parameter. 330 * @param comGuestOSType Brings the object parameter get acquired from. */ 331 static void cannotAcquireGuestOSTypeParameter(const CGuestOSType &comGuestOSType); 328 332 /** Notifies about inability to acquire ISnapshot parameter. 329 333 * @param comSnapshot Brings the object parameter get acquired from. */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachine.cpp
r98801 r98806 765 765 { 766 766 return uisession()->acquireAmountOfImmutableImages(cAmount); 767 } 768 769 bool UIMachine::mountBootMedium(const QUuid &uMediumId) 770 { 771 return uisession()->mountBootMedium(uMediumId); 767 772 } 768 773 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachine.h
r98801 r98806 523 523 /** Calculates @a cAmount of immutable images. */ 524 524 bool acquireAmountOfImmutableImages(ulong &cAmount); 525 526 /** Attempts to mount medium with @p uMediumId to the machine 527 * if it can find an appropriate controller and port. */ 528 bool mountBootMedium(const QUuid &uMediumId); 525 529 /** @} */ 526 530
Note:
See TracChangeset
for help on using the changeset viewer.