diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-04-25 20:44:37 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-04-25 20:44:37 (GMT) |
commit | 2a1dd967d3b4e06f504431f9d3d613992095b2c3 (patch) | |
tree | 869181e766ff429fcfdd61f0f7a8b8ef487f768c /src/gtkext | |
parent | 62ea3df536faae7e1706bbbc2c19cf43c4dae213 (diff) |
Removed some debug messages.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@518 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/gtkext')
-rw-r--r-- | src/gtkext/graph/ranks.c | 1 | ||||
-rw-r--r-- | src/gtkext/gtkgraphview.c | 2 | ||||
-rw-r--r-- | src/gtkext/gtkviewpanel.c | 5 |
3 files changed, 0 insertions, 8 deletions
diff --git a/src/gtkext/graph/ranks.c b/src/gtkext/graph/ranks.c index a10d5a1..e1f6688 100644 --- a/src/gtkext/graph/ranks.c +++ b/src/gtkext/graph/ranks.c @@ -641,7 +641,6 @@ void g_graph_ranks_compute_y_line(GGraphRanks *ranks) last_bottom = GRAPH_VERTICAL_MARGIN; y = 0; - for (i = 0; i < ranks->count; i++) last_bottom = compute_rank_props_y_pos(&ranks->props[i], &y, last_bottom); diff --git a/src/gtkext/gtkgraphview.c b/src/gtkext/gtkgraphview.c index e0eb870..46a82eb 100644 --- a/src/gtkext/gtkgraphview.c +++ b/src/gtkext/gtkgraphview.c @@ -242,8 +242,6 @@ static void gtk_graph_view_adjust_scroll_value(GtkGraphView *view, GtkAdjustment fake_y = 0; gtk_buffer_view_compute_fake_coord(view, &fake_x, &fake_y); - printf("fake :: (%d ; %d)\n", fake_x, fake_y); - gtk_fixed_move(GTK_FIXED(view), GTK_WIDGET(view->support), fake_x, -fake_y); } diff --git a/src/gtkext/gtkviewpanel.c b/src/gtkext/gtkviewpanel.c index e36da71..574bf22 100644 --- a/src/gtkext/gtkviewpanel.c +++ b/src/gtkext/gtkviewpanel.c @@ -331,11 +331,6 @@ static void gtk_view_panel_size_allocate(GtkWidget *widget, GtkAllocation *alloc GTK_WIDGET_CLASS(gtk_view_panel_parent_class)->size_allocate(widget, allocation); - - printf("[%s / %p] __SIZE :: (%d ; %d)\n", G_OBJECT_TYPE_NAME(widget), widget, - allocation->width, allocation->height); - - panel = GTK_VIEW_PANEL(widget); gtk_view_panel_update_adjustment(panel, GTK_ORIENTATION_HORIZONTAL); |