projects
/
ruby-evas.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ee77c7
)
Actually prepend to the font path in Evas#font_path_prepend.
author
Tilman Sauerbeck
<tilman@code-monkey.de>
Thu, 25 May 2006 09:21:10 +0000
(09:21 +0000)
committer
Tilman Sauerbeck
<tilman@code-monkey.de>
Thu, 25 May 2006 09:21:10 +0000
(09:21 +0000)
src/rb_evas.c
patch
|
blob
|
history
diff --git
a/src/rb_evas.c
b/src/rb_evas.c
index ff76dba1f7b3c8bf02b179972f6914d7ba51b0c9..ff34c25d2dbf4383aad48a0ea3de175683500656 100644
(file)
--- a/
src/rb_evas.c
+++ b/
src/rb_evas.c
@@
-1,5
+1,5
@@
/*
- * $Id: rb_evas.c 38
2 2006-05-25 09:20:31
Z tilman $
+ * $Id: rb_evas.c 38
3 2006-05-25 09:21:10
Z tilman $
*
* Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
*
@@
-113,7
+113,7
@@
static VALUE c_font_path_prepend (VALUE self, VALUE path)
{
GET_OBJ (self, RbEvas, e);
- evas_font_path_
ap
pend (e->real, StringValuePtr (path));
+ evas_font_path_
pre
pend (e->real, StringValuePtr (path));
return Qnil;
}