Method: XCB::ColormapNotifyEvent#visit
- Defined in:
- ext/xproto.c
#visit(r_visitor) ⇒ Object
2825 2826 2827 2828 2829 |
# File 'ext/xproto.c', line 2825
static VALUE
r_XCB_ColormapNotifyEvent_visit(VALUE r_self, VALUE r_visitor)
{
return rb_funcall(r_visitor, rb_intern("visit_colormap_notify"), 1, r_self);
}
|