Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
c605484b
Commit
c605484b
authored
Jul 08, 2014
by
Bryant Mairs
Browse files
Not casting QWidget::winId() triggers complaints on Windows.
parent
0025e26e
Changes
1
Hide whitespace changes
Inline
Side-by-side
libs/thirdParty/3DMouse/win/Mouse3DInput.cpp
View file @
c605484b
...
...
@@ -143,7 +143,7 @@ Mouse3DInput::Mouse3DInput(QWidget* widget) :
{
fLast3dmouseInputTime
=
0
;
InitializeRawInput
(
widget
->
winId
());
InitializeRawInput
(
(
HWND
)
widget
->
winId
());
gMouseInput
=
this
;
qApp
->
setEventFilter
(
Mouse3DInput
::
RawInputEventFilter
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment