nuke valgrind badness! :)

SVN revision: 14065
This commit is contained in:
Carsten Haitzler 2005-04-01 16:12:31 +00:00
parent 02bea51342
commit c257043cf3
8 changed files with 14 additions and 13 deletions

2
TODO
View File

@ -32,8 +32,6 @@ ISSUES:
* virtual desktops need an overhaul. hacked in waay too quickly.
* virtual desktops need fixing to work with zones properly
* gadman gadget menu needs icons :)
* valgrind e17 and address anything it complains about that is valid
* valgrind complains of dropshadow (accessing freed data) - i knwo what it is, but it shouldnt be happening. will fix.
<add more issues as they are found>

View File

@ -59,12 +59,15 @@ main(int argc, char **argv)
int after_restart = 0;
char buf[1024];
char *s;
#if 0
/* install the signal handlers. */
struct sigaction sigsegv_action;
sigsegv_action.sa_sigaction=&e_sigseg_act;
sigsegv_action.sa_flags=0;
sigsegv_action.sa_sigaction = &e_sigseg_act;
sigsegv_action.sa_flags = 0;
sigemptyset(&sigsegv_action.sa_mask);
sigaction(SIGSEGV, &sigsegv_action, NULL);
#endif
/* for debugging by redirecting stdout of e to a log file to tail */
setvbuf(stdout, NULL, _IONBF, 0);

View File

@ -121,7 +121,7 @@ _battery_new()
#undef D
#define T Config_Face
#define D conf_face_edd
E_CONFIG_VAL(D, T, enabled, INT);
E_CONFIG_VAL(D, T, enabled, UCHAR);
conf_edd = E_CONFIG_DD_NEW("Battery_Config", Config);
#undef T

View File

@ -114,7 +114,7 @@ _clock_new()
#undef D
#define T Config_Face
#define D conf_face_edd
E_CONFIG_VAL(D, T, enabled, INT);
E_CONFIG_VAL(D, T, enabled, UCHAR);
conf_edd = E_CONFIG_DD_NEW("Clock_Config", Config);
#undef T

View File

@ -1631,6 +1631,6 @@ _ds_shstore_object_set(Shstore *st, Evas_Object *o)
static void
_ds_object_unset(Evas_Object *o)
{
evas_object_image_size_set(o, 0, 0);
evas_object_image_data_set(o, NULL);
evas_object_image_size_set(o, 0, 0);
}

View File

@ -180,7 +180,7 @@ _ibar_new()
#undef D
#define T Config_Bar
#define D conf_bar_edd
E_CONFIG_VAL(D, T, enabled, INT);
E_CONFIG_VAL(D, T, enabled, UCHAR);
conf_edd = E_CONFIG_DD_NEW("IBar_Config", Config);
#undef T

View File

@ -160,9 +160,9 @@ _pager_new()
#undef D
#define T Config_Face
#define D _conf_face_edd
E_CONFIG_VAL(D, T, enabled, INT);
E_CONFIG_VAL(D, T, scale, INT);
E_CONFIG_VAL(D, T, resize, INT);
E_CONFIG_VAL(D, T, enabled, UCHAR);
E_CONFIG_VAL(D, T, scale, UCHAR);
E_CONFIG_VAL(D, T, resize, UCHAR);
_conf_edd = E_CONFIG_DD_NEW("Pager_Config", Config);
#undef T

View File

@ -117,7 +117,7 @@ _temperature_new()
#undef D
#define T Config_Face
#define D conf_face_edd
E_CONFIG_VAL(D, T, enabled, INT);
E_CONFIG_VAL(D, T, enabled, UCHAR);
conf_edd = E_CONFIG_DD_NEW("Temperature_Config", Config);
#undef T