Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_config.c e_font.c e_init.c e_int_menus.c e_ipc.c e_main.c 
        e_manager.c e_module.c e_path.c 


Log Message:
config.h is in e.h
remove some compiler warnings with __UNUSED__

===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_config.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -3 -r1.27 -r1.28
--- e_config.c  2 Apr 2005 16:40:30 -0000       1.27
+++ e_config.c  13 Apr 2005 06:03:49 -0000      1.28
@@ -2,7 +2,6 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 #include "e.h"
-#include "config.h"
 
 /* TODO List
  *
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_font.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- e_font.c    3 Apr 2005 01:52:16 -0000       1.2
+++ e_font.c    13 Apr 2005 06:03:49 -0000      1.3
@@ -2,7 +2,6 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 #include "e.h"
-#include "config.h"
 
 /* TODO List:
  * - export to libe
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_init.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- e_init.c    11 Apr 2005 20:25:52 -0000      1.16
+++ e_init.c    13 Apr 2005 06:03:49 -0000      1.17
@@ -20,7 +20,7 @@
 int
 e_init_init(void)
 {
-   int x, y, w, h;
+   int w, h;
    Ecore_X_Window root;
    Ecore_X_Window *roots;
    int num;
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_int_menus.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -3 -r1.44 -r1.45
--- e_int_menus.c       11 Apr 2005 23:32:24 -0000      1.44
+++ e_int_menus.c       13 Apr 2005 06:03:49 -0000      1.45
@@ -2,7 +2,6 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 #include "e.h"
-#include "config.h"
 
 typedef struct _Main_Data Main_Data;
 
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_ipc.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- e_ipc.c     9 Apr 2005 06:06:38 -0000       1.11
+++ e_ipc.c     13 Apr 2005 06:03:49 -0000      1.12
@@ -1,5 +1,4 @@
 #include "e.h"
-#include "config.h"
 
 /* local subsystem functions */
 static int _e_ipc_cb_client_add(void *data, int type, void *event);
@@ -40,7 +39,7 @@
 
 /* local subsystem globals */
 static int
-_e_ipc_cb_client_add(void *data, int type, void *event)
+_e_ipc_cb_client_add(void *data __UNUSED__, int type __UNUSED__, void *event)
 {
    Ecore_Ipc_Event_Client_Add *e;
    
@@ -51,7 +50,7 @@
 }
 
 static int
-_e_ipc_cb_client_del(void *data, int type, void *event)
+_e_ipc_cb_client_del(void *data __UNUSED__, int type __UNUSED__, void *event)
 {
    Ecore_Ipc_Event_Client_Del *e;
    
@@ -64,7 +63,7 @@
 }
 
 static int
-_e_ipc_cb_client_data(void *data, int type, void *event)
+_e_ipc_cb_client_data(void *data __UNUSED__, int type __UNUSED__, void *event)
 {
    Ecore_Ipc_Event_Client_Data *e;
    
@@ -541,7 +540,6 @@
    home = e_user_homedir_get();
    for (cur = paths; *cur != NULL; cur++)
      {
-       int len;
        char *p;
 
        p = *cur;
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_main.c,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -3 -r1.61 -r1.62
--- e_main.c    11 Apr 2005 22:01:51 -0000      1.61
+++ e_main.c    13 Apr 2005 06:03:50 -0000      1.62
@@ -2,7 +2,6 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 #include "e.h"
-#include "config.h"
 
 /* local subsystem functions */
 static void _e_main_shutdown_push(int (*func)(void));
@@ -711,7 +710,7 @@
 }
 
 static void
-_e_main_cb_x_fatal(void *data)
+_e_main_cb_x_fatal(void *data __UNUSED__)
 {
    e_error_gui_set(0);
    e_error_message_show("Lost X connection.");
@@ -720,7 +719,7 @@
 }
 
 static int
-_e_main_cb_signal_exit(void *data, int ev_type, void *ev)
+_e_main_cb_signal_exit(void *data __UNUSED__, int ev_type __UNUSED__, void *ev 
__UNUSED__)
 {
    /* called on ctrl-c, kill (pid) (also SIGINT, SIGTERM and SIGQIT) */
    ecore_main_loop_quit();
@@ -728,7 +727,7 @@
 }
 
 static int
-_e_main_cb_signal_hup(void *data, int ev_type, void *ev)
+_e_main_cb_signal_hup(void *data __UNUSED__, int ev_type __UNUSED__, void *ev 
__UNUSED__)
 {
    /* called on SIGHUP to restart Enlightenment */
    printf("RESTART ON!\n");
@@ -738,14 +737,14 @@
 }
 
 static int
-_e_main_cb_x_flusher(void *data)
+_e_main_cb_x_flusher(void *data __UNUSED__)
 {
    ecore_x_flush();
    return 1;
 }
 
 static int
-_e_main_cb_idler_before(void *data)
+_e_main_cb_idler_before(void *data __UNUSED__)
 {
    Evas_List *l, *pl;
    
@@ -782,7 +781,7 @@
 }
 
 static int
-_e_main_cb_idler_after(void *data)
+_e_main_cb_idler_after(void *data __UNUSED__)
 {
 //   printf("OUT of idle... %3.3f\n", ecore_time_get());
    edje_freeze();
@@ -797,7 +796,7 @@
 }
 
 static int
-_e_main_cb_startup_fake_end(void *data)
+_e_main_cb_startup_fake_end(void *data __UNUSED__)
 {
    e_init_hide();
    return 0;
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_manager.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- e_manager.c 5 Apr 2005 14:47:46 -0000       1.18
+++ e_manager.c 13 Apr 2005 06:03:50 -0000      1.19
@@ -390,7 +390,7 @@
 }
 
 static int
-_e_manager_cb_window_show_request(void *data, int ev_type, void *ev)
+_e_manager_cb_window_show_request(void *data __UNUSED__, int ev_type 
__UNUSED__, void *ev)
 {
    E_Manager *man;
    Ecore_X_Event_Window_Show_Request *e;
@@ -419,7 +419,7 @@
 }
 
 static int
-_e_manager_cb_window_configure(void *data, int ev_type, void *ev)
+_e_manager_cb_window_configure(void *data __UNUSED__, int ev_type __UNUSED__, 
void *ev)
 {
    E_Manager *man;
    Ecore_X_Event_Window_Configure *e;
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_module.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -3 -r1.23 -r1.24
--- e_module.c  12 Apr 2005 03:34:27 -0000      1.23
+++ e_module.c  13 Apr 2005 06:03:50 -0000      1.24
@@ -2,7 +2,6 @@
  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  */
 #include "e.h"
-#include "config.h"
 
 /* TODO List:
  * 
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_path.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- e_path.c    21 Feb 2005 16:16:40 -0000      1.7
+++ e_path.c    13 Apr 2005 06:03:50 -0000      1.8
@@ -229,7 +229,7 @@
 }
 
 static Evas_Bool
-_e_path_cache_free_cb(Evas_Hash *hash, const char *key, void *data, void 
*fdata)
+_e_path_cache_free_cb(Evas_Hash *hash __UNUSED__, const char *key __UNUSED__, 
void *data, void *fdata __UNUSED__)
 {
    free(data);
    return 0;




-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to