Don't use the eel_eat function.

* test/test.c: (test_text_caption_get_text_as_int):
	Don't use the eel_eat function.
This commit is contained in:
Darin Adler 2002-01-03 23:21:01 +00:00
parent 3eec4d53e1
commit 1cb7f70f8f
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2002-01-03 Darin Adler <darin@bentspoon.com>
* test/test.c: (test_text_caption_get_text_as_int):
Don't use the eel_eat function.
2002-01-03 Darin Adler <darin@bentspoon.com>
* Makefile.am: Turn on test subdirectory.

View file

@ -251,7 +251,9 @@ test_text_caption_get_text_as_int (const EelTextCaption *text_caption)
text = eel_text_caption_get_text (text_caption);
eel_eat_str_to_int (text, &result);
eel_str_to_int (text, &result);
g_free (text);
return result;
}