Enlightenment CVS committal Author : essiene Project : e17 Module : proto
Dir : e17/proto/entrance_edit_gui/src/gui Modified Files: Egui.h behavior.c x_settings.c Log Message: - Use new libentrance_edit api, no more dirty casting of const char* to char*. thnx kim - Fixup Egui.h so everything builds again. naughty rhapsodhy didn't try to build his code before committing, more negative cookie points for ya. :( =================================================================== RCS file: /cvs/e/e17/proto/entrance_edit_gui/src/gui/Egui.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -3 -r1.6 -r1.7 --- Egui.h 16 Aug 2006 19:21:31 -0000 1.6 +++ Egui.h 17 Aug 2006 00:26:37 -0000 1.7 @@ -28,7 +28,7 @@ char *title; int *item_count; - Egui_Settings_Item[] items; + Egui_Settings_Item items[]; } Egui_Settings_Group; void egui_theme_dialog_show(void); @@ -40,6 +40,6 @@ void egui_x_settings_dialog_show(void); void egui_gs_dialog_show(Egui_Graphics_Selector); -void egui_settings_dialog_show(char *title, int count, Egui_Settings_Group[] items); +void egui_settings_dialog_show(char *title, int count, Egui_Settings_Group items[]); #endif =================================================================== RCS file: /cvs/e/e17/proto/entrance_edit_gui/src/gui/behavior.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- behavior.c 16 Aug 2006 13:13:30 -0000 1.5 +++ behavior.c 17 Aug 2006 00:26:37 -0000 1.6 @@ -18,7 +18,7 @@ static Entrance_Entry login_autologin_user; static int val_login_mode; -static char* val_login_user; +static const char* val_login_user; static void _build_group_login(void); static void _load_login(void); @@ -29,7 +29,7 @@ static Entrance_Entry presel_prevuser; static int val_presel_mode; -static char* val_presel_prevuser; +static const char* val_presel_prevuser; static void _build_group_presel(void); static void _load_presel(void); =================================================================== RCS file: /cvs/e/e17/proto/entrance_edit_gui/src/gui/x_settings.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- x_settings.c 16 Aug 2006 04:18:03 -0000 1.4 +++ x_settings.c 17 Aug 2006 00:26:37 -0000 1.5 @@ -23,8 +23,8 @@ static Entrance_Entry entry_xession; int val_attempts; -char* val_xserver; -char* val_xsession; +const char* val_xserver; +const char* val_xsession; void egui_x_settings_dialog_show() ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs