Fixes, fixes...

SVN revision: 47821
This commit is contained in:
Gustavo Lima Chaves 2010-04-07 19:37:31 +00:00
parent 0a90fa0886
commit ad9e7cb93b
3 changed files with 5 additions and 5 deletions

View File

@ -25,11 +25,11 @@ external_fileselector_state_set(void *data __UNUSED__, Evas_Object *obj, const v
if (p->is_save_set && p->is_save) if (p->is_save_set && p->is_save)
elm_fileselector_is_save_set(obj, p->is_save); elm_fileselector_is_save_set(obj, p->is_save);
if (p->folder_only_set && p->folder_only) if (p->folder_only_set)
elm_fileselector_folder_only_set(obj, p->folder_only); elm_fileselector_folder_only_set(obj, p->folder_only);
if (p->show_buttons_set && p->show_buttons) if (p->show_buttons_set)
elm_fileselector_buttons_ok_cancel_set(obj, p->show_buttons); elm_fileselector_buttons_ok_cancel_set(obj, p->show_buttons);
if (p->expandable_set && p->expandable) if (p->expandable_set)
elm_fileselector_expandable_set(obj, p->expandable); elm_fileselector_expandable_set(obj, p->expandable);
} }

View File

@ -66,7 +66,7 @@ external_map_state_set(void *data __UNUSED__, Evas_Object *obj, const void *from
if (set == ELM_MAP_ZOOM_MODE_LAST) return; if (set == ELM_MAP_ZOOM_MODE_LAST) return;
elm_map_zoom_mode_set(obj, set); elm_map_zoom_mode_set(obj, set);
} }
if (p->zoom_set && p->zoom) elm_map_zoom_set(obj, p->zoom); if (p->zoom_set) elm_map_zoom_set(obj, p->zoom);
} }
static Eina_Bool static Eina_Bool

View File

@ -41,7 +41,7 @@ external_thumb_state_set(void *data __UNUSED__, Evas_Object *obj, const void *fr
if (set == ELM_THUMB_ANIMATION_LAST) return; if (set == ELM_THUMB_ANIMATION_LAST) return;
elm_thumb_animate_set(obj, set); elm_thumb_animate_set(obj, set);
} }
if (p->aspect_exists && p->keep_aspect) if (p->aspect_exists)
elm_thumb_keep_aspect_set(obj, p->keep_aspect); elm_thumb_keep_aspect_set(obj, p->keep_aspect);
} }