indenting... and remvoe printfs

SVN revision: 12420
This commit is contained in:
Carsten Haitzler 2004-12-09 07:30:45 +00:00
parent 053d8c6b87
commit b1ea85565e
3 changed files with 480 additions and 486 deletions

View File

@ -103,11 +103,6 @@ save(E_Module *m)
ds = m->data;
if (!ds) return;
printf("SAVE: %i %i, %i, %3.3f\n",
ds->conf->shadow_x,
ds->conf->shadow_y,
ds->conf->blur_size,
ds->conf->shadow_darkness);
e_config_domain_save("module.dropshadow", ds->conf_edd, ds->conf);
return 1;
}

View File

@ -42,7 +42,6 @@ init (E_Module *m)
{
Flame *f;
/* check module api version */
if (m->api->version < E_MODULE_API_VERSION)
{
@ -462,7 +461,7 @@ _flame_base_random_set (Flame_Face *ff)
/* initialize a random number seed from the time, so we get random */
/* numbers each time */
srand (time(NULL));
// srand (time(NULL));
y = (ff->flame->conf->height >> 1) - 1;
for (x = 0 ; x < (ff->ww >> 1) ; x++)
{

View File

@ -9,7 +9,7 @@ typedef struct _Flame_Face Flame_Face;
enum _Flame_Palette_Type
{
DEFAULT_PALETTE = 0,
DEFAULT_PALETTE,
PLASMA_PALETTE
};