Changeset 99739 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- May 11, 2023 1:01:08 AM (19 months ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h
r99392 r99739 513 513 514 514 /** 515 * @copydoc copy()515 * @copydoc GuestEnvironment::copy() 516 516 */ 517 517 GuestEnvironment &operator=(const GuestEnvironmentBase &rThat) … … 523 523 } 524 524 525 /** @copydoc copy() */525 /** @copydoc GuestEnvironment::copy() */ 526 526 GuestEnvironment &operator=(const GuestEnvironment &rThat) 527 527 { return operator=((const GuestEnvironmentBase &)rThat); } 528 528 529 /** @copydoc copy() */529 /** @copydoc GuestEnvironment::copy() */ 530 530 GuestEnvironment &operator=(const GuestEnvironmentChanges &rThat) 531 531 { return operator=((const GuestEnvironmentBase &)rThat); } … … 595 595 596 596 /** 597 * @copydoc copy() 597 * @copydoc GuestEnvironmentChanges::copy() 598 * @throws HRESULT 598 599 */ 599 600 GuestEnvironmentChanges &operator=(const GuestEnvironmentBase &rThat) … … 605 606 } 606 607 607 /** @copydoc copy() */ 608 /** @copydoc GuestEnvironmentChanges::copy() 609 * @throws HRESULT */ 608 610 GuestEnvironmentChanges &operator=(const GuestEnvironmentChanges &rThat) 609 611 { return operator=((const GuestEnvironmentBase &)rThat); } 610 612 611 /** @copydoc copy() */ 613 /** @copydoc GuestEnvironmentChanges::copy() 614 * @throws HRESULT */ 612 615 GuestEnvironmentChanges &operator=(const GuestEnvironment &rThat) 613 616 { return operator=((const GuestEnvironmentBase &)rThat); } -
trunk/src/VBox/Main/include/GuestSessionImpl.h
r99416 r99739 361 361 362 362 /** @name Public internal methods for supporting older Guest Additions via 363 VBoxService' built-in toolbox (< 7.1). */ 363 * VBoxService' built-in toolbox (< 7.1). 364 * @{ */ 364 365 int i_directoryCreateViaToolbox(const Utf8Str &strPath, uint32_t uMode, uint32_t uFlags, int *pvrcGuest); 365 366 int i_fileRemoveViaToolbox(const Utf8Str &strPath, int *pvrcGuest);
Note:
See TracChangeset
for help on using the changeset viewer.