We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent01f4883 commitddb89c3Copy full SHA for ddb89c3
src/java.desktop/macosx/native/libawt_lwawt/awt/AWTWindow.m
@@ -128,7 +128,7 @@ - (void)postGesture:(NSEvent *)event as:(jint)type a:(jdouble)a b:(jdouble)b {
128
129
// send up to the GestureHandler to recursively dispatch on the AWT event thread
130
DECLARE_CLASS(jc_GestureHandler,"com/apple/eawt/event/GestureHandler");
131
-DECLARE_METHOD(sjm_handleGestureFromNative, jc_GestureHandler,
+DECLARE_STATIC_METHOD(sjm_handleGestureFromNative, jc_GestureHandler,
132
"handleGestureFromNative","(Ljava/awt/Window;IDDDD)V");
133
(*env)->CallStaticVoidMethod(env, jc_GestureHandler, sjm_handleGestureFromNative,
134
awtWindow, type, (jdouble)loc.x, (jdouble)loc.y, (jdouble)a, (jdouble)b);