@@ -347,7 +347,7 @@ void CefBrowserHostWrapper::SendKeyEvent(KeyEvent keyEvent)
347
347
CefKeyEvent nativeKeyEvent;
348
348
nativeKeyEvent.focus_on_editable_field = keyEvent.FocusOnEditableField == 1 ;
349
349
nativeKeyEvent.is_system_key = keyEvent.IsSystemKey == 1 ;
350
- nativeKeyEvent.modifiers = (uint32 )keyEvent.Modifiers ;
350
+ nativeKeyEvent.modifiers = (uint32_t )keyEvent.Modifiers ;
351
351
nativeKeyEvent.type = (cef_key_event_type_t )keyEvent.Type ;
352
352
nativeKeyEvent.native_key_code = keyEvent.NativeKeyCode ;
353
353
nativeKeyEvent.windows_key_code = keyEvent.WindowsKeyCode ;
@@ -433,7 +433,7 @@ void CefBrowserHostWrapper::SendMouseWheelEvent(MouseEvent mouseEvent, int delta
433
433
CefMouseEvent m;
434
434
m.x = mouseEvent.X ;
435
435
m.y = mouseEvent.Y ;
436
- m.modifiers = (uint32 )mouseEvent.Modifiers ;
436
+ m.modifiers = (uint32_t )mouseEvent.Modifiers ;
437
437
438
438
_browserHost->SendMouseWheelEvent (m, deltaX, deltaY);
439
439
}
@@ -447,7 +447,7 @@ void CefBrowserHostWrapper::SendTouchEvent(TouchEvent evt)
447
447
{
448
448
CefTouchEvent e;
449
449
e.id = evt.Id ;
450
- e.modifiers = (uint32 )evt.Modifiers ;
450
+ e.modifiers = (uint32_t )evt.Modifiers ;
451
451
e.pointer_type = (cef_pointer_type_t )evt.PointerType ;
452
452
e.pressure = evt.Pressure ;
453
453
e.radius_x = evt.RadiusX ;
@@ -559,7 +559,7 @@ void CefBrowserHostWrapper::SendMouseClickEvent(MouseEvent mouseEvent, MouseButt
559
559
CefMouseEvent m;
560
560
m.x = mouseEvent.X ;
561
561
m.y = mouseEvent.Y ;
562
- m.modifiers = (uint32 )mouseEvent.Modifiers ;
562
+ m.modifiers = (uint32_t )mouseEvent.Modifiers ;
563
563
564
564
_browserHost->SendMouseClickEvent (m, (CefBrowserHost::MouseButtonType) mouseButtonType, mouseUp, clickCount);
565
565
}
@@ -571,7 +571,7 @@ void CefBrowserHostWrapper::SendMouseMoveEvent(MouseEvent mouseEvent, bool mouse
571
571
CefMouseEvent m;
572
572
m.x = mouseEvent.X ;
573
573
m.y = mouseEvent.Y ;
574
- m.modifiers = (uint32 )mouseEvent.Modifiers ;
574
+ m.modifiers = (uint32_t )mouseEvent.Modifiers ;
575
575
576
576
_browserHost->SendMouseMoveEvent (m, mouseLeave);
577
577
}
@@ -695,7 +695,7 @@ CefMouseEvent CefBrowserHostWrapper::GetCefMouseEvent(MouseEvent mouseEvent)
695
695
CefMouseEvent cefMouseEvent;
696
696
cefMouseEvent.x = mouseEvent.X ;
697
697
cefMouseEvent.y = mouseEvent.Y ;
698
- cefMouseEvent.modifiers = (uint32 )mouseEvent.Modifiers ;
698
+ cefMouseEvent.modifiers = (uint32_t )mouseEvent.Modifiers ;
699
699
return cefMouseEvent;
700
700
}
701
701
0 commit comments