Opened 14 years ago
Closed 14 years ago
#287 closed defect/bug (fixed)
remove verbosity from gui/gtk
Reported by: | Gerritv | Owned by: | cp15 |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | gui/gtk | Version: | git master |
Severity: | Keywords: | ||
Cc: |
Description
There are printf's in gui/gtk/datawindow.c which shouldn't exist.
--- destination.c (revision 2001) +++ destination.c (working copy) @@ -135,8 +135,7 @@
} g_list_free(columns_list); while (*column_text) {
- printf("column_text=%p\n", column_text);
- printf("*column_text=%s\n", *column_text);
+ dbg(1,"column_text is %s:\n", column_text);
GtkCellRenderer? *cell=gtk_cell_renderer_text_new(); gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (param->treeview),-1, gettext(*column_text), cell, "text", i, NULL); i++;
Change History (1)
comment:1 Changed 14 years ago by Singesang
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.
Applied in r2006. Thanks Gerritv.