Changeset 86122 in vbox for trunk/src/VBox
- Timestamp:
- Sep 14, 2020 5:06:31 PM (4 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/global
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsGeneral.cpp
r86097 r86122 40 40 bool equal(const UIDataSettingsGlobalGeneral &other) const 41 41 { 42 return true42 return true 43 43 && (m_strDefaultMachineFolder == other.m_strDefaultMachineFolder) 44 44 && (m_strVRDEAuthLibrary == other.m_strVRDEAuthLibrary) 45 ;45 ; 46 46 } 47 47 … … 52 52 53 53 /** Holds the 'default machine folder' path. */ 54 QString m_strDefaultMachineFolder;54 QString m_strDefaultMachineFolder; 55 55 /** Holds the 'VRDE auth library' name. */ 56 QString m_strVRDEAuthLibrary;56 QString m_strVRDEAuthLibrary; 57 57 }; 58 58 … … 116 116 117 117 /* Update data and failing state: */ 118 setFailed(!save GeneralData());118 setFailed(!saveData()); 119 119 120 120 /* Upload properties to data: */ … … 191 191 } 192 192 193 bool UIGlobalSettingsGeneral::save GeneralData()193 bool UIGlobalSettingsGeneral::saveData() 194 194 { 195 195 /* Prepare result: */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsGeneral.h
r86097 r86122 73 73 74 74 /** Saves existing data from cache. */ 75 bool save GeneralData();75 bool saveData(); 76 76 77 77 /** Holds the page data cache instance. */
Note:
See TracChangeset
for help on using the changeset viewer.