Changeset 91565 in vbox for trunk/src/VBox
- Timestamp:
- Oct 5, 2021 11:14:30 AM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/widgets
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIApplianceEditorWidget.cpp
r91537 r91565 1860 1860 } 1861 1861 1862 void UIApplianceEditorWidget::setVirtualSystemBaseFolder(const QString &strPath) 1863 { 1864 /* Make sure model exists, it's being created in sub-classes: */ 1865 if (m_pModel) 1866 m_pModel->setVirtualSystemBaseFolder(strPath); 1867 } 1868 1862 1869 void UIApplianceEditorWidget::restoreDefaults() 1863 1870 { … … 1891 1898 } 1892 1899 1893 void UIApplianceEditorWidget::setVirtualSystemBaseFolder(const QString& path)1894 {1895 if (!m_pModel)1896 return;1897 m_pModel->setVirtualSystemBaseFolder(path);1898 }1899 1900 1900 1901 1901 #include "UIApplianceEditorWidget.moc" -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIApplianceEditorWidget.h
r91537 r91565 302 302 CAppliance *appliance() const { return m_pAppliance; } 303 303 304 /** Defines virtual system base folder @a strPath. */ 305 void setVirtualSystemBaseFolder(const QString &strPath); 306 304 307 /** Returns the minimum guest RAM. */ 305 308 static int minGuestRAM() { return m_minGuestRAM; } … … 321 324 virtual void retranslateUi() /* override */; 322 325 323 void setVirtualSystemBaseFolder(const QString& path);324 325 326 /** Holds the list of VSD hints. */ 326 327 AbstractVSDParameterList m_listVsdHints;
Note:
See TracChangeset
for help on using the changeset viewer.