update mtime when save

SVN revision: 48432
This commit is contained in:
Tiago Rezende Campos Falcao 2010-04-29 18:52:59 +00:00
parent ea7c060805
commit 266ac4bd99
1 changed files with 9 additions and 0 deletions

View File

@ -7087,6 +7087,15 @@ _edje_edit_internal_save(Evas_Object *obj, int current_only)
}
eet_close(eetf);
/* Update mtime */
{
struct stat st;
if (stat(ed->path, &st) != 0)
return EINA_FALSE;
ef->mtime = st.st_mtime;
}
INF("*********** Saving DONE ******************");
return EINA_TRUE;
}