summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov <akurtako@redhat.com>2012-08-28 19:45:28 +0300
committerSilenio Quarti <silenio_quarti@ca.ibm.com>2012-08-28 13:36:47 -0400
commitf16b4cd1be1513696a47d5e4a812e1123cca35d9 (patch)
treed39a8493d5f3e8780ee7ae29bfaa57a48e5571a3
parentf9c7f286716e1457f10365cf85e9924d4a2e869b (diff)
downloadeclipse.platform.swt-f16b4cd1be1513696a47d5e4a812e1123cca35d9.tar.gz
eclipse.platform.swt-f16b4cd1be1513696a47d5e4a812e1123cca35d9.tar.xz
eclipse.platform.swt-f16b4cd1be1513696a47d5e4a812e1123cca35d9.zip
Remove cast in dynamic method breaking compilation.
This should have been part of bug 369624.
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.c4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java1
2 files changed, 2 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.c b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.c
index 12cff6d853..16ad4e8134 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.c
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.c
@@ -5767,12 +5767,12 @@ JNIEXPORT void JNICALL OS_NATIVE(_1gdk_1pango_1context_1set_1colormap)
{
OS_NATIVE_ENTER(env, that, _1gdk_1pango_1context_1set_1colormap_FUNC);
/*
- gdk_pango_context_set_colormap((PangoContext *)arg0, (GdkColormap *)arg1);
+ gdk_pango_context_set_colormap((PangoContext *)arg0, arg1);
*/
{
OS_LOAD_FUNCTION(fp, gdk_pango_context_set_colormap)
if (fp) {
- ((void (CALLING_CONVENTION*)(PangoContext *, GdkColormap *))fp)((PangoContext *)arg0, (GdkColormap *)arg1);
+ ((void (CALLING_CONVENTION*)(PangoContext *, jintLong))fp)((PangoContext *)arg0, arg1);
}
}
OS_NATIVE_EXIT(env, that, _1gdk_1pango_1context_1set_1colormap_FUNC);
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
index 312603a2b1..c0ae254c02 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
@@ -4349,7 +4349,6 @@ public static final int /*long*/ gdk_pango_context_get() {
/**
* @method flags=dynamic
* @param context cast=(PangoContext *)
- * @param colormap cast=(GdkColormap *)
*/
public static final native void _gdk_pango_context_set_colormap(int /*long*/ context, int /*long*/ colormap);
public static final void gdk_pango_context_set_colormap(int /*long*/ context, int /*long*/ colormap) {