- Timestamp:
- Jan 7, 2019 12:36:52 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreatorDefs.h
r76671 r76674 25 25 struct VisoOptions 26 26 { 27 QString m_strVisoName = "ad-hoc-viso"; 27 VisoOptions() 28 :m_strVisoName("ad-hoc-viso"){} 28 29 bool operator==(const VisoOptions &otherOptions) const 29 30 { 30 31 return m_strVisoName == otherOptions.m_strVisoName; 31 32 } 33 34 QString m_strVisoName; 32 35 }; 33 36 34 37 struct BrowserOptions 35 38 { 36 bool m_bShowHiddenObjects = true; 39 BrowserOptions() 40 :m_bShowHiddenObjects(true){} 37 41 bool operator==(const BrowserOptions &otherOptions) const 38 42 { 39 43 return m_bShowHiddenObjects == otherOptions.m_bShowHiddenObjects; 40 44 } 45 bool m_bShowHiddenObjects = true; 41 46 }; 42 47
Note:
See TracChangeset
for help on using the changeset viewer.