Wed Nov 28 22:20:44 2001  Kristian Rietveld  <kristian@planet.nl>

        * demos/gtk-demo/editable_cells.c: fix typo

        * demos/gtk-demo/list_store.c (add_columns): remove call to
        gtk_tree_view_column_set_clickable which didn't make sense
This commit is contained in:
Kristian Rietveld
2001-11-28 21:19:40 +00:00
committed by Kristian Rietveld
parent 53da925c9b
commit 2418e92303
9 changed files with 50 additions and 3 deletions

View File

@ -1,6 +1,6 @@
/* Tree View/Editable Cells
*
* This demo demostrates the use of editable cells in a GtkTreeView. If
* This demo demonstrates the use of editable cells in a GtkTreeView. If
* you're new to the GtkTreeView widgets and associates, look into
* the GtkListStore example first.
*

View File

@ -121,8 +121,6 @@ add_columns (GtkTreeView *treeview)
gtk_tree_view_column_set_sizing (GTK_TREE_VIEW_COLUMN (column),
GTK_TREE_VIEW_COLUMN_FIXED);
gtk_tree_view_column_set_fixed_width (GTK_TREE_VIEW_COLUMN (column), 50);
gtk_tree_view_column_set_clickable (GTK_TREE_VIEW_COLUMN (column), TRUE);
gtk_tree_view_append_column (treeview, column);
/* column for bug numbers */