Changeset 95390 in vbox
- Timestamp:
- Jun 27, 2022 12:48:52 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151985
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsDisplay.h
r94323 r95390 58 58 /** Saves settings from cache to external object(s) packed inside @a data. 59 59 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ 60 virtual void saveFromCacheTo(QVariant &data) /* overrride */;60 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 61 61 62 62 /** Handles translation event. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsGeneral.h
r93990 r95390 57 57 /** Saves settings from cache to external object(s) packed inside @a data. 58 58 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ 59 virtual void saveFromCacheTo(QVariant &data) /* overrride */;59 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 60 60 61 61 /** Handles translation event. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.h
r93990 r95390 57 57 /** Saves settings from cache to external object(s) packed inside @a data. 58 58 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ 59 virtual void saveFromCacheTo(QVariant &data) /* overrride */;59 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 60 60 61 61 /** Performs validation, updates @a messages list if something is wrong. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInterface.h
r94323 r95390 56 56 /** Saves settings from cache to external object(s) packed inside @a data. 57 57 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ 58 virtual void saveFromCacheTo(QVariant &data) /* overrride */;58 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 59 59 60 60 /** Handles translation event. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsLanguage.h
r93990 r95390 56 56 /** Saves settings from cache to external object(s) packed inside @a data. 57 57 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ 58 virtual void saveFromCacheTo(QVariant &data) /* overrride */;58 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 59 59 60 60 /** Handles translation event. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsProxy.h
r94333 r95390 57 57 /** Saves settings from cache to external object(s) packed inside @a data. 58 58 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ 59 virtual void saveFromCacheTo(QVariant &data) /* overrride */;59 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 60 60 61 61 /** Performs validation, updates @a messages list if something is wrong. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.h
r93990 r95390 57 57 /** Saves settings from cache to external object(s) packed inside @a data. 58 58 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ 59 virtual void saveFromCacheTo(QVariant &data) /* overrride */;59 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 60 60 61 61 /** Handles translation event. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsAudio.h
r94708 r95390 59 59 /** Saves settings from cache to external object(s) packed inside @a data. 60 60 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ 61 virtual void saveFromCacheTo(QVariant &data) /* overrride */;61 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 62 62 63 63 /** Handles translation event. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsDisplay.h
r94436 r95390 84 84 /** Saves settings from cache to external object(s) packed inside @a data. 85 85 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ 86 virtual void saveFromCacheTo(QVariant &data) /* overrride */;86 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 87 87 88 88 /** Performs validation, updates @a messages list if something is wrong. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsGeneral.h
r94498 r95390 73 73 /** Save data from cache into the corresponding external object(s). 74 74 * @note This task COULD be performed in other than GUI thread. */ 75 virtual void saveFromCacheTo(QVariant &data) /* overrride */;75 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 76 76 77 77 /** Performs validation, updates @a messages list if something is wrong. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsInterface.h
r94518 r95390 64 64 /** Saves settings from cache to external object(s) packed inside @a data. 65 65 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ 66 virtual void saveFromCacheTo(QVariant &data) /* overrride */;66 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 67 67 68 68 /** Handles translation event. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsNetwork.h
r94675 r95390 82 82 /** Saves settings from cache to external object(s) packed inside @a data. 83 83 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ 84 virtual void saveFromCacheTo(QVariant &data) /* overrride */;84 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 85 85 86 86 /** Performs validation, updates @a messages list if something is wrong. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSF.h
r95077 r95390 66 66 /** Saves settings from cache to external object(s) packed inside @a data. 67 67 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ 68 virtual void saveFromCacheTo(QVariant &data) /* overrride */;68 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 69 69 70 70 /** Handles translation event. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSerial.h
r94675 r95390 67 67 /** Saves settings from cache to external object(s) packed inside @a data. 68 68 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ 69 virtual void saveFromCacheTo(QVariant &data) /* overrride */;69 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 70 70 71 71 /** Performs validation, updates @a messages list if something is wrong. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsStorage.h
r95363 r95390 72 72 /** Saves settings from cache to external object(s) packed inside @a data. 73 73 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ 74 virtual void saveFromCacheTo(QVariant &data) /* overrride */;74 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 75 75 76 76 /** Performs validation, updates @a messages list if something is wrong. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSystem.h
r95222 r95390 93 93 /** Saves settings from cache to external object(s) packed inside @a data. 94 94 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ 95 virtual void saveFromCacheTo(QVariant &data) /* overrride */;95 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 96 96 97 97 /** Performs validation, updates @a messages list if something is wrong. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsUSB.h
r95286 r95390 64 64 /** Saves settings from cache to external object(s) packed inside @a data. 65 65 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ 66 virtual void saveFromCacheTo(QVariant &data) /* overrride */;66 virtual void saveFromCacheTo(QVariant &data) RT_OVERRIDE; 67 67 68 68 /** Performs validation, updates @a messages list if something is wrong. */
Note:
See TracChangeset
for help on using the changeset viewer.