Changeset 18625 in vbox
- Timestamp:
- Apr 2, 2009 10:19:54 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 45539
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxExportApplianceWzd.cpp
r18623 r18625 302 302 { 303 303 /* Write the appliance */ 304 CProgress progress = aAppliance.Write ("ovf-0.9", mFileSelector->path()); 304 QString version = mSelectOVF09->isChecked() ? "ovf-0.9" : "ovf-1.0"; 305 CProgress progress = aAppliance.Write (version, mFileSelector->path()); 305 306 bool fResult = aAppliance.isOk(); 306 307 if (fResult) -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxExportApplianceWzd.ui
r18390 r18625 38 38 <widget class="QStackedWidget" name="mPageStack"> 39 39 <property name="currentIndex"> 40 <number> 1</number>40 <number>2</number> 41 41 </property> 42 42 <widget class="QWidget" name="mVMSelectPage"> … … 380 380 <item> 381 381 <layout class="QGridLayout" name="gridLayout_2"> 382 <item row="0" column="0" rowspan=" 3">382 <item row="0" column="0" rowspan="4"> 383 383 <widget class="QLabel" name="mLogoFileSelect"> 384 384 <property name="sizePolicy"> … … 427 427 <widget class="VBoxFilePathSelectorWidget" name="mFileSelector"/> 428 428 </item> 429 <item row=" 2" column="1">429 <item row="3" column="1"> 430 430 <spacer name="spacer"> 431 431 <property name="orientation"> … … 439 439 </property> 440 440 </spacer> 441 </item> 442 <item row="2" column="1"> 443 <widget class="QCheckBox" name="mSelectOVF09"> 444 <property name="toolTip"> 445 <string>Write in legacy OVF 0.9 format for compatibility with other virtualization products.</string> 446 </property> 447 <property name="text"> 448 <string>&Write legacy OVF 0.9</string> 449 </property> 450 </widget> 441 451 </item> 442 452 </layout>
Note:
See TracChangeset
for help on using the changeset viewer.