summaryrefslogtreecommitdiff
path: root/gtk/gtkliststore.h
diff options
context:
space:
mode:
authorJonathan Blandford <jrb@redhat.com>2001-03-23 21:12:33 +0000
committerJonathan Blandford <jrb@src.gnome.org>2001-03-23 21:12:33 +0000
commitb572436d359e2e6ad5549e532f31acdfe0b0389e (patch)
treeb616af189d50f3db202184076f67dc23c5924529 /gtk/gtkliststore.h
parent21fd434c5f528546a35036b4cfce6a708a4c2762 (diff)
downloadgtk+-b572436d359e2e6ad5549e532f31acdfe0b0389e.tar.gz
Forgot to namespace this.
Fri Mar 23 16:13:43 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktreeviewcolumn.h (GtkCellDataFunc): Forgot to namespace this. * gtk/gtktreestore.c (gtk_tree_store_set_value): change from set_cell to set_value * gtk/gtkliststore.c (gtk_list_store_set_value): change from set_cell to set_value
Diffstat (limited to 'gtk/gtkliststore.h')
-rw-r--r--gtk/gtkliststore.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/gtk/gtkliststore.h b/gtk/gtkliststore.h
index 5ab9a8d144..13eb37a61c 100644
--- a/gtk/gtkliststore.h
+++ b/gtk/gtkliststore.h
@@ -55,20 +55,6 @@ struct _GtkListStore
struct _GtkListStoreClass
{
GObjectClass parent_class;
-
- /* signals */
- /* Will be moved into the GtkTreeModelIface eventually */
- void (* changed) (GtkTreeModel *tree_model,
- GtkTreePath *path,
- GtkTreeIter *iter);
- void (* inserted) (GtkTreeModel *tree_model,
- GtkTreePath *path,
- GtkTreeIter *iter);
- void (* has_child_toggled) (GtkTreeModel *tree_model,
- GtkTreePath *path,
- GtkTreeIter *iter);
- void (* deleted) (GtkTreeModel *tree_model,
- GtkTreePath *path);
};
@@ -81,7 +67,7 @@ void gtk_list_store_set_n_columns (GtkListStore *store,
void gtk_list_store_set_column_type (GtkListStore *store,
gint column,
GType type);
-void gtk_list_store_set_cell (GtkListStore *store,
+void gtk_list_store_set_value (GtkListStore *store,
GtkTreeIter *iter,
gint column,
GValue *value);