Changeset 51476 in vbox for trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp
- Timestamp:
- May 30, 2014 2:58:02 PM (11 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox
- Property svn:mergeinfo changed
/branches/VBox-4.3/src/VBox merged: 93628-93629
- Property svn:mergeinfo changed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp
r51259 r51476 2168 2168 case MODIFYVM_DRAGANDDROP: 2169 2169 { 2170 D ragAndDropMode_T mode;2170 DnDMode_T mode; 2171 2171 if (!RTStrICmp(ValueUnion.psz, "disabled")) 2172 mode = D ragAndDropMode_Disabled;2172 mode = DnDMode_Disabled; 2173 2173 else if (!RTStrICmp(ValueUnion.psz, "hosttoguest")) 2174 mode = D ragAndDropMode_HostToGuest;2174 mode = DnDMode_HostToGuest; 2175 2175 else if (!RTStrICmp(ValueUnion.psz, "guesttohost")) 2176 mode = D ragAndDropMode_GuestToHost;2176 mode = DnDMode_GuestToHost; 2177 2177 else if (!RTStrICmp(ValueUnion.psz, "bidirectional")) 2178 mode = D ragAndDropMode_Bidirectional;2178 mode = DnDMode_Bidirectional; 2179 2179 else 2180 2180 { … … 2184 2184 if (SUCCEEDED(rc)) 2185 2185 { 2186 CHECK_ERROR(machine, COMSETTER(D ragAndDropMode)(mode));2186 CHECK_ERROR(machine, COMSETTER(DnDMode)(mode)); 2187 2187 } 2188 2188 break;
Note:
See TracChangeset
for help on using the changeset viewer.