Changeset 89921 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jun 25, 2021 6:47:30 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 145379
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp
r88363 r89921 2129 2129 fEnableUsb = true; 2130 2130 } 2131 else if (!RTStrICmp(ValueUnion.psz, "none")) 2132 { 2133 CHECK_ERROR(sessionMachine, COMSETTER(PointingHIDType)(PointingHIDType_None)); 2134 } 2131 2135 else 2132 2136 { … … 2165 2169 { 2166 2170 CHECK_ERROR(sessionMachine, COMSETTER(KeyboardHIDType)(KeyboardHIDType_USBKeyboard)); 2171 if (SUCCEEDED(rc)) 2172 fEnableUsb = true; 2173 } 2174 else if (!RTStrICmp(ValueUnion.psz, "none")) 2175 { 2176 CHECK_ERROR(sessionMachine, COMSETTER(KeyboardHIDType)(KeyboardHIDType_None)); 2167 2177 if (SUCCEEDED(rc)) 2168 2178 fEnableUsb = true;
Note:
See TracChangeset
for help on using the changeset viewer.