Method: XCB::MotionNotifyEvent#visit
- Defined in:
- ext/xproto.c
#visit(r_visitor) ⇒ Object
2344 2345 2346 2347 2348 |
# File 'ext/xproto.c', line 2344
static VALUE
r_XCB_MotionNotifyEvent_visit(VALUE r_self, VALUE r_visitor)
{
return rb_funcall(r_visitor, rb_intern("visit_motion_notify"), 1, r_self);
}
|