X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;ds=sidebyside;f=src%2Frb_evas_main.h;h=a492e128833c1286d34c41c0f7228fc8fd4bf89c;hb=3dd4aabe7176925d1c248f63afc5ee747873ce38;hp=be8700a35512ad0b615c2bc9fd42186a8e3b8f6c;hpb=48ce7740aa5b73b1f58fbde3180f5f56d9022fcf;p=ruby-evas.git diff --git a/src/rb_evas_main.h b/src/rb_evas_main.h index be8700a..a492e12 100644 --- a/src/rb_evas_main.h +++ b/src/rb_evas_main.h @@ -1,6 +1,4 @@ /* - * $Id: rb_evas_main.h 38 2004-07-25 11:27:25Z tilman $ - * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * * This library is free software; you can redistribute it and/or @@ -24,14 +22,7 @@ #define GET_OBJ(obj, type, o) \ type *(o) = NULL; \ \ - Data_Get_Struct ((obj), type, (o)); \ -\ - if (!*(o)) { \ - rb_raise (rb_eException, \ - "%s destroyed already", \ - rb_obj_classname ((obj))); \ - return Qnil; \ - } + Data_Get_Struct ((obj), type, (o)); #define CHECK_BOOL(val) \ if (TYPE ((val)) != T_TRUE && TYPE ((val)) != T_FALSE) { \ @@ -57,7 +48,7 @@ \ snprintf (buf, sizeof (buf), \ "#<%s:%p ptr=%p>", rb_obj_classname ((obj)), \ - (void *) obj, *o); \ + (void *) obj, o->real); \ \ return rb_str_new2 (buf);