summaryrefslogtreecommitdiff
path: root/x11-toolkits
diff options
context:
space:
mode:
authorSteve Wills <swills@FreeBSD.org>2010-10-15 04:30:04 +0000
committerSteve Wills <swills@FreeBSD.org>2010-10-15 04:30:04 +0000
commitfc1ed92fb4d156d78f14f998f173781a29f2b00f (patch)
tree80602f141d37037560155740ddab498e75c3402c /x11-toolkits
parent- Remove unnecessary dependency (diff)
- Fix runtime issue
Approved by: pgollucci (mentor)
Notes
Notes: svn path=/head/; revision=263019
Diffstat (limited to 'x11-toolkits')
-rw-r--r--x11-toolkits/ruby-gtk2/files/patch-gtk2-ext-gtk2-rbgtkitemfactory-c2
1 files changed, 1 insertions, 1 deletions
diff --git a/x11-toolkits/ruby-gtk2/files/patch-gtk2-ext-gtk2-rbgtkitemfactory-c b/x11-toolkits/ruby-gtk2/files/patch-gtk2-ext-gtk2-rbgtkitemfactory-c
index b69f74cccc75..4377359d6edd 100644
--- a/x11-toolkits/ruby-gtk2/files/patch-gtk2-ext-gtk2-rbgtkitemfactory-c
+++ b/x11-toolkits/ruby-gtk2/files/patch-gtk2-ext-gtk2-rbgtkitemfactory-c
@@ -5,7 +5,7 @@
VALUE obj = rb_eval_string("eval('self', binding)");
G_RELATIVE(obj, self);
- RBGTK_INITIALIZE(self, gtk_item_factory_new(FIX2INT(type), RVAL2CSTR(path),
-+ RBGTK_INITIALIZE(self, gtk_item_factory_new(NUM2UINT(type), RVAL2CSTR(path),
++ RBGTK_INITIALIZE(self, gtk_item_factory_new(NUM2ULONG(type), RVAL2CSTR(path),
RVAL2ACCEL(accel)));
return Qnil;