Changeset 16646 in vbox for trunk/src/VBox/Frontends/VBoxBFE
- Timestamp:
- Feb 10, 2009 4:48:40 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 42627
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
r16585 r16646 1678 1678 rc = CFGMR3InsertString(pCfg, "Format", "SPF"); UPDATE_RC(); 1679 1679 } 1680 else if (!strcmp(RTPathExt(g_pszHdaFile), ".vdi")) 1681 { 1682 rc = CFGMR3InsertString(pCfg, "Format", "VDI"); UPDATE_RC(); 1683 } 1684 else 1685 { 1686 rc = CFGMR3InsertString(pCfg, "Format", "VMDK"); UPDATE_RC(); 1687 } 1680 1688 } 1681 1689 … … 1696 1704 { 1697 1705 rc = CFGMR3InsertString(pCfg, "Format", "SPF"); UPDATE_RC(); 1706 } 1707 else if (!strcmp(RTPathExt(g_pszHdbFile), ".vdi")) 1708 { 1709 rc = CFGMR3InsertString(pCfg, "Format", "VDI"); UPDATE_RC(); 1710 } 1711 else 1712 { 1713 rc = CFGMR3InsertString(pCfg, "Format", "VMDK"); UPDATE_RC(); 1698 1714 } 1699 1715 }
Note:
See TracChangeset
for help on using the changeset viewer.