app/file_mgr, menu: fix more build errors.

This commit is contained in:
ChunEon Park 2014-11-01 17:31:02 +09:00
parent 0ad8fd8180
commit d90e2101b9
2 changed files with 9 additions and 3 deletions

View File

@ -111,7 +111,7 @@ enventor_edc_modified_cb(void *data, Evas_Object *obj EINA_UNUSED,
void *event_info)
{
file_mgr_data *fmd = data;
Enventor_EDC_Modified *modified = event;
Enventor_EDC_Modified *modified = event_info;
if (modified->self_changed)
{

View File

@ -1,4 +1,10 @@
#include <Elementary.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#define ENVENTOR_BETA_API_SUPPORT 1
#include <Enventor.h>
#include "common.h"
struct menu_s
@ -592,7 +598,7 @@ load_save_btn_cb(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED,
void *event_info EINA_UNUSED)
{
menu_data *md = data;
enventor_object_save(md->enventor);
enventor_object_save(md->enventor, config_edc_path_get());
edc_file_load(md);
warning_close(md);
}