Changeset 97245 in vbox
- Timestamp:
- Oct 20, 2022 8:44:32 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154224
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/global
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsDisplay.cpp
r96407 r97245 90 90 { 91 91 cleanup(); 92 } 93 94 bool UIGlobalSettingsDisplay::changed() const 95 { 96 return m_pCache ? m_pCache->wasChanged() : false; 92 97 } 93 98 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsDisplay.h
r96407 r97245 56 56 protected: 57 57 58 /** Returns whether the page content was changed. */ 59 virtual bool changed() const RT_OVERRIDE; 60 58 61 /** Loads settings from external object(s) packed inside @a data to cache. 59 62 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsGeneral.cpp
r96407 r97245 82 82 { 83 83 cleanup(); 84 } 85 86 bool UIGlobalSettingsGeneral::changed() const 87 { 88 return m_pCache ? m_pCache->wasChanged() : false; 84 89 } 85 90 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsGeneral.h
r96407 r97245 55 55 protected: 56 56 57 /** Returns whether the page content was changed. */ 58 virtual bool changed() const RT_OVERRIDE; 59 57 60 /** Loads settings from external object(s) packed inside @a data to cache. 58 61 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.cpp
r96407 r97245 83 83 { 84 84 cleanup(); 85 } 86 87 bool UIGlobalSettingsInput::changed() const 88 { 89 return m_pCache ? m_pCache->wasChanged() : false; 85 90 } 86 91 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.h
r96407 r97245 55 55 protected: 56 56 57 /** Returns whether the page content was changed. */ 58 virtual bool changed() const RT_OVERRIDE; 59 57 60 /** Loads settings from external object(s) packed inside @a data to cache. 58 61 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInterface.cpp
r96407 r97245 75 75 { 76 76 cleanup(); 77 } 78 79 bool UIGlobalSettingsInterface::changed() const 80 { 81 return m_pCache ? m_pCache->wasChanged() : false; 77 82 } 78 83 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInterface.h
r96407 r97245 54 54 protected: 55 55 56 /** Returns whether the page content was changed. */ 57 virtual bool changed() const RT_OVERRIDE; 58 56 59 /** Loads settings from external object(s) packed inside @a data to cache. 57 60 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsLanguage.cpp
r96407 r97245 75 75 { 76 76 cleanup(); 77 } 78 79 bool UIGlobalSettingsLanguage::changed() const 80 { 81 return m_pCache ? m_pCache->wasChanged() : false; 77 82 } 78 83 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsLanguage.h
r96407 r97245 54 54 protected: 55 55 56 /** Returns whether the page content was changed. */ 57 virtual bool changed() const RT_OVERRIDE; 58 56 59 /** Loads settings from external object(s) packed inside @a data to cache. 57 60 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsProxy.cpp
r96407 r97245 82 82 { 83 83 cleanup(); 84 } 85 86 bool UIGlobalSettingsProxy::changed() const 87 { 88 return m_pCache ? m_pCache->wasChanged() : false; 84 89 } 85 90 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsProxy.h
r96407 r97245 55 55 protected: 56 56 57 /** Returns whether the page content was changed. */ 58 virtual bool changed() const RT_OVERRIDE; 59 57 60 /** Loads settings from external object(s) packed inside @a data to cache. 58 61 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp
r96407 r97245 75 75 { 76 76 cleanup(); 77 } 78 79 bool UIGlobalSettingsUpdate::changed() const 80 { 81 return m_pCache ? m_pCache->wasChanged() : false; 77 82 } 78 83 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.h
r96407 r97245 55 55 protected: 56 56 57 /** Returns whether the page content was changed. */ 58 virtual bool changed() const RT_OVERRIDE; 59 57 60 /** Loads settings from external object(s) packed inside @a data to cache. 58 61 * @note This task WILL be performed in other than the GUI thread, no widget interactions! */
Note:
See TracChangeset
for help on using the changeset viewer.