Sha256: e7090698c0390abdbd46303f7847c503df3788397793779452767757fdfdbba7
Contents?: true
Size: 740 Bytes
Versions: 12
Compression:
Stored size: 740 Bytes
Contents
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */ /************************************************ rbgtkinputdialog.c - $Author: mutoh $ $Date: 2003/02/01 16:46:23 $ Copyright (C) 2002,2003 Ruby-GNOME2 Project Team Copyright (C) 1998-2000 Yukihiro Matsumoto, Daisuke Kanda, Hiroshi Igarashi ************************************************/ #include "global.h" static VALUE idiag_initialize(VALUE self) { RBGTK_INITIALIZE(self, gtk_input_dialog_new()); return Qnil; } void Init_gtk_input_dialog() { VALUE gInputDialog = G_DEF_CLASS(GTK_TYPE_INPUT_DIALOG, "InputDialog", mGtk); rb_define_method(gInputDialog, "initialize", idiag_initialize, 0); }
Version data entries
12 entries across 12 versions & 1 rubygems