diff options
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); |