X-Git-Url: http://git.code-monkey.de/?p=ruby-evas.git;a=blobdiff_plain;f=src%2Frb_evas_object.c;h=ee25e1d3f4bce9d32f823497f0d92d8b9aacfa82;hp=6492a4e9de48fd2d3a10cd95bae056c63dc21d00;hb=ba05ccf5a7b503e2d9a58c1de4072312b5abfab7;hpb=2118372cfbb06b10e6254539b30887e0342650fd diff --git a/src/rb_evas_object.c b/src/rb_evas_object.c index 6492a4e..ee25e1d 100644 --- a/src/rb_evas_object.c +++ b/src/rb_evas_object.c @@ -1,5 +1,5 @@ /* - * $Id: rb_evas_object.c 20 2004-06-22 20:46:56Z tilman $ + * $Id: rb_evas_object.c 23 2004-06-26 22:55:31Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -26,24 +26,6 @@ #include "rb_evas.h" #include "rb_evas_object.h" -#define GET_OBJ(obj, type, o, desc) \ - type **(o) = NULL; \ -\ - Data_Get_Struct ((obj), type *, (o)); \ -\ - if (!*(o)) { \ - rb_raise (rb_eException, desc " destroyed already"); \ - return Qnil; \ - } - -#define CHECK_BOOL(val) \ - if (TYPE ((val)) != T_TRUE && TYPE ((val)) != T_FALSE) { \ - rb_raise (rb_eTypeError, \ - "wrong argument type %s (expected true or false)", \ - rb_obj_classname ((val))); \ - return Qnil; \ - } - static VALUE parents; /* called by the child classes */