X-Git-Url: http://git.code-monkey.de/?p=ruby-evas.git;a=blobdiff_plain;f=src%2Frb_evas.c;h=4eb21344ed2380422c45cdc4303af3e905d79b15;hp=f1b433fdba21e75567c79d9ae44c668c082933fa;hb=c3202d026f3800676461ee407f2a5e46dc20e2f2;hpb=ff457c57c3ac469622c2fcd6bf9e66a55c1df678 diff --git a/src/rb_evas.c b/src/rb_evas.c index f1b433f..4eb2134 100644 --- a/src/rb_evas.c +++ b/src/rb_evas.c @@ -1,6 +1,4 @@ /* - * $Id: rb_evas.c 354 2006-02-10 18:14:08Z tilman $ - * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * * This library is free software; you can redistribute it and/or @@ -98,8 +96,6 @@ static VALUE c_font_path_append (VALUE self, VALUE path) { GET_OBJ (self, RbEvas, e); - Check_Type (path, T_STRING); - evas_font_path_append (e->real, StringValuePtr (path)); return Qnil; @@ -115,9 +111,7 @@ static VALUE c_font_path_prepend (VALUE self, VALUE path) { GET_OBJ (self, RbEvas, e); - Check_Type (path, T_STRING); - - evas_font_path_append (e->real, StringValuePtr (path)); + evas_font_path_prepend (e->real, StringValuePtr (path)); return Qnil; } @@ -298,8 +292,6 @@ static VALUE c_find_object (VALUE self, VALUE name) GET_OBJ (self, RbEvas, e); - Check_Type (name, T_STRING); - if (!(o = evas_object_name_find (e->real, StringValuePtr (name)))) return Qnil;