Remove printfs and debugging output.

SVN revision: 22637
This commit is contained in:
Christopher Michael 2006-05-16 05:23:26 +00:00
parent 601d444490
commit f30c02f5ba
3 changed files with 2 additions and 4 deletions

View File

@ -35,7 +35,6 @@ _config_tclock_module(E_Container *con, TClock_Face *f)
static void
_fill_data(TClock_Face *f, E_Config_Dialog_Data *cfdata)
{
printf("Cfg Format: %s\n", f->conf->format);
cfdata->resolution = f->conf->resolution;
cfdata->format = strdup(f->conf->format);
cfdata->userformat = f->conf->userformat;
@ -127,7 +126,6 @@ _basic_apply_data(E_Config_Dialog *cfd, E_Config_Dialog_Data *cfdata)
f->conf->format = (char *)evas_stringshare_add("%c");
e_config_save_queue();
printf("Cfg Format: %s\n", f->conf->format);
return 1;
}

View File

@ -197,8 +197,6 @@ _tclock_new()
cl = cl->next;
}
printf("Format: %s\n", face->conf->format);
/* to avoid the long display of "Starting the clock..." */
_tclock_cb_check(tclock);
tclock->tclock_check_timer = ecore_timer_add(tclock->conf->poll_time, _tclock_cb_check, tclock);

View File

@ -9,6 +9,8 @@
#define TIME_BUF 1024
#define FORMAT_BUF_SIZE 1024
#define TCLOCK_DEBUG(X) (printf("tclock_debug: %s\n",X))
#undef TCLOCK_DEBUG
#define TCLOCK_DEBUG(X)
typedef struct _Config
{