Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2012-10-24 19:25:53 +0000
committerSilenio Quarti2012-10-24 19:25:53 +0000
commit9d1a7aa19bfa5f4813db3446bdb5f08f217c2cdf (patch)
treef594491aaad42055ea2502b6142b54ad6c2e352e /bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os.c
parent3f20eb141985695c94bfef8a385bd084ad49d97d (diff)
downloadeclipse.platform.swt-9d1a7aa19bfa5f4813db3446bdb5f08f217c2cdf.tar.gz
eclipse.platform.swt-9d1a7aa19bfa5f4813db3446bdb5f08f217c2cdf.tar.xz
eclipse.platform.swt-9d1a7aa19bfa5f4813db3446bdb5f08f217c2cdf.zip
remove gdk_gc_set_values from GTK3
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.c4
1 files changed, 2 insertions, 2 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 f585d0e827..92f31d169a 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
@@ -5910,12 +5910,12 @@ JNIEXPORT void JNICALL OS_NATIVE(_1gdk_1gc_1set_1values)
OS_NATIVE_ENTER(env, that, _1gdk_1gc_1set_1values_FUNC);
if (arg1) if ((lparg1 = getGdkGCValuesFields(env, arg1, &_arg1)) == NULL) goto fail;
/*
- gdk_gc_set_values(arg0, (GdkGCValues *)lparg1, arg2);
+ gdk_gc_set_values(arg0, lparg1, arg2);
*/
{
OS_LOAD_FUNCTION(fp, gdk_gc_set_values)
if (fp) {
- ((void (CALLING_CONVENTION*)(jintLong, GdkGCValues *, jint))fp)(arg0, (GdkGCValues *)lparg1, arg2);
+ ((void (CALLING_CONVENTION*)(jintLong, GdkGCValues *, jint))fp)(arg0, lparg1, arg2);
}
}
fail:

Back to the top