Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Northover2001-11-09 20:54:48 +0000
committerSteve Northover2001-11-09 20:54:48 +0000
commit30f86e7c1bafc3a05a8c93f5c85cd29b14a8aa60 (patch)
treeda0821ae983fddee4054332516b3b684ec0f5d36 /bundles/org.eclipse.swt/Eclipse SWT/motif/library
parent0b7089e4800435b1958b529906fefc66ed8bd91c (diff)
downloadeclipse.platform.swt-30f86e7c1bafc3a05a8c93f5c85cd29b14a8aa60.tar.gz
eclipse.platform.swt-30f86e7c1bafc3a05a8c93f5c85cd29b14a8aa60.tar.xz
eclipse.platform.swt-30f86e7c1bafc3a05a8c93f5c85cd29b14a8aa60.zip
*** empty log message ***
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/motif/library')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/motif/library/swt.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/motif/library/swt.c b/bundles/org.eclipse.swt/Eclipse SWT/motif/library/swt.c
index f53479778b..52259ad31e 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/motif/library/swt.c
+++ b/bundles/org.eclipse.swt/Eclipse SWT/motif/library/swt.c
@@ -8620,3 +8620,18 @@ JNIEXPORT jint JNICALL Java_org_eclipse_swt_internal_motif_OS_setlocale
return rc;
}
+
+/*
+ * Class: org_eclipse_swt_internal_motif_OS
+ * Method: XtInsertEventHandler
+ */
+JNIEXPORT void JNICALL Java_org_eclipse_swt_internal_motif_OS_XtInsertEventHandler
+ (JNIEnv *env, jclass that, jint w, jint event_mask, jboolean nonmaskable, jint proc, jint client_data, jint position)
+{
+
+#ifdef DEBUG_CALL_PRINTS
+ fprintf(stderr, "XtInsertEventHandler\n");
+#endif
+
+ XtInsertEventHandler ((Widget) w, (EventMask) event_mask, (Boolean) nonmaskable, (XtEventHandler) proc, (XtPointer) client_data, (XtListPosition) position);
+}

Back to the top