Changeset 22810 in vbox for trunk/src/VBox/Frontends/VBoxBFE
- Timestamp:
- Sep 7, 2009 1:41:45 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/MouseImpl.cpp
r22277 r22810 109 109 fButtons |= PDMIMOUSEPORT_BUTTON_MIDDLE; 110 110 111 int vrc = mpDrv->pUpPort->pfnPutEvent(mpDrv->pUpPort, dx, dy, dz, fButtons);111 int vrc = mpDrv->pUpPort->pfnPutEvent(mpDrv->pUpPort, dx, dy, dz, 0 /* Horizontal wheel */, fButtons); 112 112 if (RT_FAILURE (vrc)) 113 113 return E_FAIL; … … 166 166 fButtons |= PDMIMOUSEPORT_BUTTON_MIDDLE; 167 167 168 vrc = mpDrv->pUpPort->pfnPutEvent(mpDrv->pUpPort, 1, 1, dz, fButtons);168 vrc = mpDrv->pUpPort->pfnPutEvent(mpDrv->pUpPort, 1, 1, dz, 0 /* Horizontal wheel */, fButtons); 169 169 if (RT_FAILURE (vrc)) 170 170 return E_FAIL;
Note:
See TracChangeset
for help on using the changeset viewer.