Changeset 76945 in vbox
- Timestamp:
- Jan 23, 2019 7:50:10 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 128322
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/medium/viso
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoConfigurationPanel.h
r76944 r76945 24 24 /* GUI includes: */ 25 25 #include "UIVisoCreatorPanel.h" 26 #include "UIVisoCreatorDefs.h"27 26 28 27 /* Forward declarations: */ -
trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreator.h
r76944 r76945 33 33 #include "QIMainDialog.h" 34 34 #include "QIWithRetranslateUI.h" 35 #include "UIVisoCreatorDefs.h"36 35 37 36 /* Forward declarations: */ … … 80 79 81 80 private: 81 struct VisoOptions 82 { 83 VisoOptions() 84 :m_strVisoName("ad-hoc-viso"){} 85 QString m_strVisoName; 86 /** Additions viso options to be inserted to the viso file as separate lines. */ 87 QStringList m_customOptions; 88 }; 89 90 struct BrowserOptions 91 { 92 BrowserOptions() 93 :m_fShowHiddenObjects(true){} 94 bool m_fShowHiddenObjects; 95 }; 82 96 83 97 void prepareObjects(); -
trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreatorOptionsPanel.h
r76944 r76945 29 29 #include "UIVisoCreatorPanel.h" 30 30 #include "QIWithRetranslateUI.h" 31 #include "UIVisoCreatorDefs.h"32 33 31 34 32 class UIVisoCreatorOptionsPanel : public UIVisoCreatorPanel
Note:
See TracChangeset
for help on using the changeset viewer.