From 3e51a0e7f6837ed94f65f92f24ca0dfecebd6269 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 23 Jan 2006 18:53:07 +0000 Subject: [PATCH] Actually use the new tlist. SVN revision: 20000 --- src/bin/e_apps_error.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/e_apps_error.c b/src/bin/e_apps_error.c index 4475645f7..13cd0ff72 100644 --- a/src/bin/e_apps_error.c +++ b/src/bin/e_apps_error.c @@ -147,11 +147,11 @@ _e_app_error_dialog_scrolltext_create(Evas *evas, char *title, Ecore_Exe_Event_D os = e_widget_framelist_add(evas, _(title), 0); - obj = e_widget_ilist_add(evas, 0, 0, NULL); + obj = e_widget_tlist_add(evas, NULL); for (i = 0; lines[i].line != NULL; i++) - e_widget_ilist_append(obj, NULL, lines[i].line, NULL, NULL, NULL); - e_widget_min_size_set(obj, 100, 100); + e_widget_tlist_append(obj, lines[i].line, NULL, NULL, NULL); + e_widget_min_size_set(obj, 200, 200); e_widget_framelist_object_append(os, obj);