summaryrefslogtreecommitdiff
path: root/src/emacsgtkfixed.c
diff options
context:
space:
mode:
authorJoakim Verona <joakim@verona.se>2011-08-08 17:06:52 +0200
committerJoakim Verona <joakim@verona.se>2011-08-08 17:06:52 +0200
commit23e9910c1fc51657f08b4ab125c0c44e5860d942 (patch)
tree3bdd8c587e19f029e94591ef1a63ff02a4a20311 /src/emacsgtkfixed.c
parentc5e10d038d040a7bb0eedb64469705ff84addd09 (diff)
downloademacs-23e9910c1fc51657f08b4ab125c0c44e5860d942.tar.gz
GLYPH_DEBUG fix
Diffstat (limited to 'src/emacsgtkfixed.c')
-rw-r--r--src/emacsgtkfixed.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emacsgtkfixed.c b/src/emacsgtkfixed.c
index 34daab7285f..7f8d8939d42 100644
--- a/src/emacsgtkfixed.c
+++ b/src/emacsgtkfixed.c
@@ -80,7 +80,7 @@ static void emacs_fixed_gtk_widget_size_allocate (GtkWidget *widget,
GtkWidgetClass *parent_class;
struct GtkFixedPrivateL* priv;
- printf(" emacs_fixed_gtk_widget_size_allocate\n");
+ // printf(" emacs_fixed_gtk_widget_size_allocate\n");
klass = EMACS_FIXED_GET_CLASS (widget);
parent_class = g_type_class_peek_parent (klass);
parent_class->size_allocate (widget, allocation);
@@ -148,7 +148,7 @@ static void emacs_fixed_gtk_widget_size_allocate (GtkWidget *widget,
child_allocation.height = xv->clip_bottom - xv->clip_top;
//gtk_widget_size_allocate (child, &child_allocation);
//TODO find a way to remove this feeble workaround
- printf(" allocation internal modification for xw %d %d,%d\n",xv, child_allocation.width, child_allocation.height);
+ // printf(" allocation internal modification for xw %d %d,%d\n",xv, child_allocation.width, child_allocation.height);
}
gtk_widget_size_allocate (child->widget, &child_allocation);