Changeset 84564 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- May 27, 2020 2:10:26 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138294
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DisplayImplLegacy.cpp
r82968 r84564 3 3 * VirtualBox IDisplay implementation, helpers for legacy GAs. 4 4 * 5 * Methods and helpers to support old guest additions 3.x or older.6 * This is not used by the current guest additions.5 * Methods and helpers to support old Guest Additions 3.x or older. 6 * This is not used by the current Guest Additions. 7 7 */ 8 8 -
trunk/src/VBox/Main/src-client/GuestFileImpl.cpp
r84508 r84564 303 303 * 304 304 * Note! This will not be accurate with older (< 5.2.32, 6.0.0 - 6.0.9) 305 * guest additions when using writeAt, readAt or writing to a file305 * Guest Additions when using writeAt, readAt or writing to a file 306 306 * opened in append mode. 307 307 */ -
trunk/src/VBox/Main/src-client/GuestImpl.cpp
r82968 r84564 415 415 { 416 416 /* 417 * If we're running older guest additions (< 3.2.0) try get it from417 * If we're running older Guest Additions (< 3.2.0) try get it from 418 418 * the guest properties. Detected switched around Version and 419 419 * Revision in early 3.1.x releases (see r57115). … … 462 462 { 463 463 /* 464 * If we're running older guest additions (< 3.2.0) try get it from464 * If we're running older Guest Additions (< 3.2.0) try get it from 465 465 * the guest properties. Detected switched around Version and 466 466 * Revision in early 3.1.x releases (see r57115). -
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r84554 r84564 481 481 } 482 482 else if (mData.mProtocolVersion < 99999) 483 hrc = setError(VBOX_E_NOT_SUPPORTED, tr("The base environment feature is not supported by the guest additions"));483 hrc = setError(VBOX_E_NOT_SUPPORTED, tr("The base environment feature is not supported by the Guest Additions")); 484 484 else 485 485 hrc = setError(VBOX_E_INVALID_OBJECT_STATE, tr("The base environment has not yet been reported by the guest")); … … 2778 2778 { 2779 2779 /* 2780 * We currently do this based on the reported guest additions version,2780 * We currently do this based on the reported Guest Additions version, 2781 2781 * ASSUMING that VBoxService and VBoxDrv are at the same version. 2782 2782 */ … … 2797 2797 2798 2798 /* 2799 * Inform the user about outdated guest additions (VM release log).2799 * Inform the user about outdated Guest Additions (VM release log). 2800 2800 */ 2801 2801 if (mData.mProtocolVersion < 2) … … 3745 3745 } 3746 3746 else if (mData.mProtocolVersion < 99999) 3747 hrc = setError(VBOX_E_NOT_SUPPORTED, tr("The base environment feature is not supported by the guest additions"));3747 hrc = setError(VBOX_E_NOT_SUPPORTED, tr("The base environment feature is not supported by the Guest Additions")); 3748 3748 else 3749 3749 hrc = setError(VBOX_E_INVALID_OBJECT_STATE, tr("The base environment has not yet been reported by the guest")); … … 3766 3766 } 3767 3767 else if (mData.mProtocolVersion < 99999) 3768 hrc = setError(VBOX_E_NOT_SUPPORTED, tr("The base environment feature is not supported by the guest additions"));3768 hrc = setError(VBOX_E_NOT_SUPPORTED, tr("The base environment feature is not supported by the Guest Additions")); 3769 3769 else 3770 3770 hrc = setError(VBOX_E_INVALID_OBJECT_STATE, tr("The base environment has not yet been reported by the guest")); -
trunk/src/VBox/Main/src-client/VMMDevInterface.cpp
r83142 r84564 231 231 { 232 232 /* 233 * The guest additions was disabled because of a reset233 * The Guest Additions was disabled because of a reset 234 234 * or driver unload. 235 235 */ … … 270 270 271 271 /** 272 * Update the guest additions capabilities.273 * This is called when the guest additions capabilities change. The new capabilities272 * Update the Guest Additions capabilities. 273 * This is called when the Guest Additions capabilities change. The new capabilities 274 274 * are given and the connector should update its internal state. 275 275 *
Note:
See TracChangeset
for help on using the changeset viewer.