Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_configure.c 


Log Message:


asparagus - again. lots fo leak fixes and other fixes have been happening, so
i think an asparagus is a good idea - sorry package config people. :)

===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_configure.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- e_configure.c       24 Sep 2005 10:38:04 -0000      1.8
+++ e_configure.c       9 Oct 2005 04:22:18 -0000       1.9
@@ -16,22 +16,22 @@
    Evas_Coord w, h, ew, eh;   
    
    if (!con)
-   {
-      man = e_manager_current_get();
-      if (!man) return NULL;
-      con = e_container_current_get(man);
-      if (!con) con = e_container_number_get(man, 0);
-      if (!con) return NULL;
-   }
+     {
+       man = e_manager_current_get();
+       if (!man) return NULL;
+       con = e_container_current_get(man);
+       if (!con) con = e_container_number_get(man, 0);
+       if (!con) return NULL;
+     }
    app = E_OBJECT_ALLOC(E_Configure, E_CONFIGURE_TYPE, _e_configure_free);
    if (!app) return NULL;
    app->win = e_win_new(con);   
    if (!app->win)
-   {
-      free(app);
-      return NULL;
-   }
-            
+     {
+       free(app);
+       return NULL;
+     }
+   
    app->con = con;
    
    e_win_delete_callback_set(app->win, _e_configure_gui_hide);
@@ -62,10 +62,10 @@
    e_box_min_size_get(app->box, &w, &h);
        
    if (ew > w )
-      w = ew;
+     w = ew;
    if (eh > h)
-      h = eh;
-       
+     h = eh;
+   
    edje_extern_object_min_size_set(app->box, w, h);
    e_win_size_base_set (app->win, w , h + eh);
    e_win_size_min_set (app->win, w, h + eh);
@@ -91,8 +91,8 @@
    if (win)
      {
        ecore_evas_geometry_get(win->ecore_evas, NULL, NULL, &w, &h);
-
-       app = (E_Configure *) ecore_evas_data_get(win->ecore_evas, "App");
+ 
+       app = (E_Configure *)ecore_evas_data_get(win->ecore_evas, "App");
        evas_object_resize(app->edje, w, h);
      }
 }




-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to