Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Gayed2012-03-09 16:05:41 +0000
committerGrant Gayed2012-03-09 16:05:41 +0000
commit4d842d1e7eb2ec23c4528724847e2f2c39595e7d (patch)
treea04b34f6e79f9462acf4caa80a4760e27d669ee6 /bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.c
parent65025a7edc821ab692899a998f097ee59dcca651 (diff)
downloadeclipse.platform.swt-4d842d1e7eb2ec23c4528724847e2f2c39595e7d.tar.gz
eclipse.platform.swt-4d842d1e7eb2ec23c4528724847e2f2c39595e7d.tar.xz
eclipse.platform.swt-4d842d1e7eb2ec23c4528724847e2f2c39595e7d.zip
Bug 373794 - Malformed Javadoc comments
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.c')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.c10
1 files changed, 5 insertions, 5 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 bdd7f7430c..f2c9f50487 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
@@ -2312,7 +2312,7 @@ JNIEXPORT jintLong JNICALL OS_NATIVE(_1XSetSelectionOwner)
{
jintLong rc = 0;
OS_NATIVE_ENTER(env, that, _1XSetSelectionOwner_FUNC);
- rc = (jintLong)XSetSelectionOwner((Display *)arg0, (Atom)arg1, arg2, (Time)arg3);
+ rc = (jintLong)XSetSelectionOwner((Display *)arg0, (Atom)arg1, (Window)arg2, (Time)arg3);
OS_NATIVE_EXIT(env, that, _1XSetSelectionOwner_FUNC);
return rc;
}
@@ -6217,12 +6217,12 @@ JNIEXPORT jboolean JNICALL OS_NATIVE(_1gdk_1pixbuf_1save_1to_1bufferv)
if (arg5) if ((lparg5 = (*env)->GetIntLongArrayElements(env, arg5, NULL)) == NULL) goto fail;
if (arg6) if ((lparg6 = (*env)->GetIntLongArrayElements(env, arg6, NULL)) == NULL) goto fail;
/*
- rc = (jboolean)gdk_pixbuf_save_to_bufferv((GdkPixbuf *)arg0, (gchar **)lparg1, (gsize *)lparg2, (const char *)lparg3, lparg4, lparg5, (GError **)lparg6);
+ rc = (jboolean)gdk_pixbuf_save_to_bufferv((GdkPixbuf *)arg0, (gchar **)lparg1, (gsize *)lparg2, (const char *)lparg3, (char **)lparg4, (char **)lparg5, (GError **)lparg6);
*/
{
OS_LOAD_FUNCTION(fp, gdk_pixbuf_save_to_bufferv)
if (fp) {
- rc = (jboolean)((jboolean (CALLING_CONVENTION*)(GdkPixbuf *, gchar **, gsize *, const char *, jintLong *, jintLong *, GError **))fp)((GdkPixbuf *)arg0, (gchar **)lparg1, (gsize *)lparg2, (const char *)lparg3, lparg4, lparg5, (GError **)lparg6);
+ rc = (jboolean)((jboolean (CALLING_CONVENTION*)(GdkPixbuf *, gchar **, gsize *, const char *, char **, char **, GError **))fp)((GdkPixbuf *)arg0, (gchar **)lparg1, (gsize *)lparg2, (const char *)lparg3, (char **)lparg4, (char **)lparg5, (GError **)lparg6);
}
}
fail:
@@ -10942,12 +10942,12 @@ JNIEXPORT void JNICALL OS_NATIVE(_1gtk_1orientable_1set_1orientation)
{
OS_NATIVE_ENTER(env, that, _1gtk_1orientable_1set_1orientation_FUNC);
/*
- gtk_orientable_set_orientation(arg0, (GtkOrientation)arg1);
+ gtk_orientable_set_orientation((GtkOrientable *)arg0, (GtkOrientation)arg1);
*/
{
OS_LOAD_FUNCTION(fp, gtk_orientable_set_orientation)
if (fp) {
- ((void (CALLING_CONVENTION*)(jintLong, GtkOrientation))fp)(arg0, (GtkOrientation)arg1);
+ ((void (CALLING_CONVENTION*)(GtkOrientable *, GtkOrientation))fp)((GtkOrientable *)arg0, (GtkOrientation)arg1);
}
}
OS_NATIVE_EXIT(env, that, _1gtk_1orientable_1set_1orientation_FUNC);

Back to the top