|
From: Enlightenment C. <no...@cv...> - 2007-05-02 15:37:05
|
Enlightenment CVS committal
Author : devilhorns
Project : e17
Module : apps/e
Dir : e17/apps/e/src/bin
Modified Files:
e_widget_aspect.c
Log Message:
Remove unneeded printf.
===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_widget_aspect.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- e_widget_aspect.c 2 May 2007 02:18:40 -0000 1.4
+++ e_widget_aspect.c 2 May 2007 15:37:02 -0000 1.5
@@ -16,7 +16,6 @@
double align_x, align_y;
};
-
static void
_e_wid_del_hook(Evas_Object *obj)
{
@@ -55,7 +54,6 @@
cx = px + (wd->align_x * (pw - cw));
cy = py + (wd->align_y * (ph - ch));
- printf("ASPECT RECONF - p: %d,%d %dx%d c: %d,%d %dx%d\n", px, py, pw, ph, cx, cy, cw, ch);
evas_object_resize(wd->child, cw, ch);
evas_object_move(wd->child, cx, cy);
}
|