formatting

SVN revision: 73413
This commit is contained in:
Mike Blumenkrantz 2012-07-06 13:35:03 +00:00
parent cdc51406e3
commit 385a6d0239
1 changed files with 302 additions and 303 deletions

View File

@ -14,7 +14,6 @@
#define DEFAULT_WIDTH 600 #define DEFAULT_WIDTH 600
#define DEFAULT_HEIGHT 350 #define DEFAULT_HEIGHT 350
typedef struct _E_Fwin E_Fwin; typedef struct _E_Fwin E_Fwin;
typedef struct _E_Fwin_Page E_Fwin_Page; typedef struct _E_Fwin_Page E_Fwin_Page;
typedef struct _E_Fwin_Apps_Dialog E_Fwin_Apps_Dialog; typedef struct _E_Fwin_Apps_Dialog E_Fwin_Apps_Dialog;
@ -365,7 +364,7 @@ e_fwin_zone_shutdown(E_Zone *zone)
Eina_List *f, *fn; Eina_List *f, *fn;
E_Fwin *win; E_Fwin *win;
EINA_LIST_FOREACH_SAFE(fwins, f, fn, win) EINA_LIST_FOREACH_SAFE (fwins, f, fn, win)
{ {
if (win->zone != zone) continue; if (win->zone != zone) continue;
e_object_del(E_OBJECT(win)); e_object_del(E_OBJECT(win));
@ -473,13 +472,13 @@ _e_fwin_new(E_Container *con,
/* /*
o = edje_object_add(fwin->win->evas); o = edje_object_add(fwin->win->evas);
// o = e_icon_add(e_win_evas_get(fwin->win)); // o = e_icon_add(e_win_evas_get(fwin->win));
// e_icon_scale_size_set(o, 0); // e_icon_scale_size_set(o, 0);
// e_icon_fill_inside_set(o, 0); // e_icon_fill_inside_set(o, 0);
edje_object_part_swallow(fwin->bg_obj, "e.swallow.bg", o); edje_object_part_swallow(fwin->bg_obj, "e.swallow.bg", o);
evas_object_pass_events_set(o, 1); evas_object_pass_events_set(o, 1);
fwin->under_obj = o; fwin->under_obj = o;
*/ */
o = edje_object_add(fwin->win->evas); o = edje_object_add(fwin->win->evas);
// o = e_icon_add(e_win_evas_get(fwin->win)); // o = e_icon_add(e_win_evas_get(fwin->win));
@ -1190,7 +1189,7 @@ _e_fwin_cb_move(E_Win *win)
if (!win) return; //safety if (!win) return; //safety
// fwin = win->data; // fwin = win->data;
/* _e_fwin_geom_save(fwin); */ /* _e_fwin_geom_save(fwin); */
} }
static void static void
@ -1269,7 +1268,7 @@ _e_fwin_changed(void *data,
} }
else else
{ {
#define RELEASE_STR(x) if (x) {eina_stringshare_del(x); (x) = NULL;} #define RELEASE_STR(x) if (x) {eina_stringshare_del(x); (x) = NULL; }
RELEASE_STR(fwin->wallpaper_file); RELEASE_STR(fwin->wallpaper_file);
RELEASE_STR(fwin->overlay_file); RELEASE_STR(fwin->overlay_file);
RELEASE_STR(fwin->scrollframe_file); RELEASE_STR(fwin->scrollframe_file);