elm widget_preview_ctxpopup.c: Fixed build error.

Elm_Ctxpopup_Item -> Elm_Object_Item.


SVN revision: 62433
This commit is contained in:
Daniel Juyung Seo 2011-08-14 07:46:58 +00:00
parent e8f8a62091
commit 9e3f2db2b7
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ elm_ctxpopup_item_append(ctxpopup, "Delete file", ic, NULL, NULL);
ic = elm_icon_add(ctxpopup);
elm_icon_standard_set(ic, "folder");
elm_icon_scale_set(ic, EINA_FALSE, EINA_FALSE);
Elm_Ctxpopup_Item *it = elm_ctxpopup_item_append(ctxpopup, "Navigate to folder", ic, NULL, NULL);
Elm_Object_Item *it = elm_ctxpopup_item_append(ctxpopup, "Navigate to folder", ic, NULL, NULL);
elm_ctxpopup_item_disabled_set(it, EINA_TRUE);
evas_object_size_hint_weight_set(ctxpopup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);