From 22d5f604f34673a569b8276c0922573cf79a9a5c Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Tue, 26 Nov 2013 08:32:49 +0900 Subject: [PATCH] wizard - protect min size calc against missing group complaints if someone were to ... replace the default theme... and would be missing groups... in theory the min size calc may fail thus leaving min w/h unset, so just set them anyway. --- src/modules/wizard/e_wizard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/wizard/e_wizard.c b/src/modules/wizard/e_wizard.c index f9ec30170..cd3bd6e0f 100644 --- a/src/modules/wizard/e_wizard.c +++ b/src/modules/wizard/e_wizard.c @@ -163,7 +163,7 @@ e_wizard_page_show(Evas_Object *obj) o_content = obj; if (obj) { - Evas_Coord minw, minh; + Evas_Coord minw = 0, minh = 0; e_widget_size_min_get(obj, &minw, &minh); edje_extern_object_min_size_set(obj, minw, minh);