Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_int_config_apps.c 


Log Message:
typdef struct.

===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_apps.c,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -3 -r1.54 -r1.55
--- e_int_config_apps.c 28 Dec 2006 14:15:10 -0000      1.54
+++ e_int_config_apps.c 29 Dec 2006 14:16:27 -0000      1.55
@@ -45,21 +45,21 @@
    E_App_Edit *editor;
 };
 
-struct _E_Config_Once
+typedef struct _E_Config_Once
 {
    const char *title;
    const char *label;
    const char *path;
    int (*func) (void *data, const char *path);
    void *data;
-};
+} E_Config_Once;
 
 EAPI E_Config_Dialog *
 e_int_config_apps_once(E_Container *con, const char *title, const char *label, 
const char *path, int (*func) (void *data, const char *path), void *data)
 {
    E_Config_Dialog *cfd;
    E_Config_Dialog_View *v;
-   struct _E_Config_Once *once = NULL;
+   E_Config_Once *once = NULL;
 
    v = E_NEW(E_Config_Dialog_View, 1);
 
@@ -69,7 +69,7 @@
 
    if ((path) || (func))
       {
-         once = E_NEW(struct _E_Config_Once, 1);
+         once = E_NEW(E_Config_Once, 1);
         if (once)
            {
               once->title = title;
@@ -491,7 +491,7 @@
 
    if (cfdata->cfd->data)
       {
-         struct _E_Config_Once *once = NULL;
+         E_Config_Once *once = NULL;
 
          once = cfdata->cfd->data;
         if (once->func)
@@ -622,7 +622,7 @@
 static Evas_Object *
 _basic_create_widgets(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data 
*cfdata)
 {
-   struct _E_Config_Once *once = NULL;
+   E_Config_Once *once = NULL;
    Evas_Object *o, *of, *ob, *ot, *mt;
    E_Fm2_Config fmc_all, fmc;
 



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to