aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-17 05:07:58 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-04-17 05:07:58 +0000
commitc35aa93590ff9737ffe14acf2218fc2085798426 (patch)
tree09fe4ccf26412fb654259e1fba76363d7a68d2db
parent684fe92dcc0efcf0f1da636c5a6ab52c1602b337 (diff)
downloadruby-c35aa93590ff9737ffe14acf2218fc2085798426.tar.gz
tkutil.c: revert r48250
* ext/tk/tkutil/tkutil.c (Init_tkutil): TkUtil::CallbackSubst and TkUtil::CallbackSubst::Info need the default allocator. [ruby-list:50115] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50338 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ext/tk/tkutil/tkutil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/tk/tkutil/tkutil.c b/ext/tk/tkutil/tkutil.c
index be8d7b2364..c1c4e3fa78 100644
--- a/ext/tk/tkutil/tkutil.c
+++ b/ext/tk/tkutil/tkutil.c
@@ -1778,10 +1778,10 @@ Init_tkutil(void)
ID_call = rb_intern("call");
/* --------------------- */
- cCB_SUBST = rb_define_class_under(mTK, "CallbackSubst", rb_cData);
+ cCB_SUBST = rb_define_class_under(mTK, "CallbackSubst", rb_cObject);
rb_define_singleton_method(cCB_SUBST, "inspect", cbsubst_inspect, 0);
- cSUBST_INFO = rb_define_class_under(cCB_SUBST, "Info", rb_cData);
+ cSUBST_INFO = rb_define_class_under(cCB_SUBST, "Info", rb_cObject);
rb_define_singleton_method(cSUBST_INFO, "inspect", substinfo_inspect, 0);
ID_SUBST_INFO = rb_intern("SUBST_INFO");