Changeset 13845 in vbox
- Timestamp:
- Nov 5, 2008 10:41:39 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38840
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HardDiskFormatImpl.cpp
r13844 r13845 92 92 case VDCFGVALUETYPE_INTEGER: 93 93 { 94 dt = DataType ::Int32Type;94 dt = DataType_Int32Type; 95 95 /* If there is a default value get them in the right format */ 96 96 if (pa->pDefaultValue) … … 100 100 case VDCFGVALUETYPE_BYTES: 101 101 { 102 dt = DataType ::Int8Type;102 dt = DataType_Int8Type; 103 103 /* If there is a default value get them in the right format */ 104 104 if (pa->pDefaultValue) … … 113 113 case VDCFGVALUETYPE_STRING: 114 114 { 115 dt = DataType ::StringType;115 dt = DataType_StringType; 116 116 /* If there is a default value get them in the right format */ 117 117 if (pa->pDefaultValue) … … 124 124 Utf8Str (""), 125 125 dt, 126 pa->uKeyFlags,126 static_cast<unsigned int> (pa->uKeyFlags), 127 127 defaults }; 128 128 unconst (mData.properties).push_back (prop);
Note:
See TracChangeset
for help on using the changeset viewer.