summaryrefslogtreecommitdiff
path: root/gtk/gtktreeprivate.h
diff options
context:
space:
mode:
authorMichael Natterer <mitch@imendio.com>2008-06-18 09:12:32 +0000
committerMichael Natterer <mitch@src.gnome.org>2008-06-18 09:12:32 +0000
commitfe8a946e876ad50ad70535ab70380c03a4eab58b (patch)
tree36a02fd1b3bcb54afc7b1177316a6599230e9ca9 /gtk/gtktreeprivate.h
parent060948a43b05e6c62d0d1d246e012cebd1956f5d (diff)
downloadgtk+-fe8a946e876ad50ad70535ab70380c03a4eab58b.tar.gz
deprecate GtkDestroyNotify.
2008-06-18 Michael Natterer <mitch@imendio.com> * gtk/gtktypeutils.h: deprecate GtkDestroyNotify. * gtk/gtkactiongroup.[ch] * gtk/gtkcombobox.[ch] * gtk/gtkcontainer.[ch] * gtk/gtkliststore.[ch] * gtk/gtkmain.[ch] * gtk/gtkmenu.c * gtk/gtkstock.[ch] * gtk/gtktreedatalist.[ch] * gtk/gtktreemodelfilter.[ch] * gtk/gtktreemodelsort.[ch] * gtk/gtktreeprivate.h * gtk/gtktreeselection.[ch] * gtk/gtktreesortable.[ch] * gtk/gtktreestore.[ch] * gtk/gtktreeview.[ch] * gtk/gtktreeviewcolumn.[ch]: s/GtkDestroyNotify/GDestroyNotify/g. svn path=/trunk/; revision=20448
Diffstat (limited to 'gtk/gtktreeprivate.h')
-rw-r--r--gtk/gtktreeprivate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtktreeprivate.h b/gtk/gtktreeprivate.h
index 7fe4d0ced9..51bb9511f8 100644
--- a/gtk/gtktreeprivate.h
+++ b/gtk/gtktreeprivate.h
@@ -159,14 +159,14 @@ struct _GtkTreeViewPrivate
GtkTreeViewColumnDropFunc column_drop_func;
gpointer column_drop_func_data;
- GtkDestroyNotify column_drop_func_data_destroy;
+ GDestroyNotify column_drop_func_data_destroy;
GList *column_drag_info;
GtkTreeViewColumnReorder *cur_reorder;
/* ATK Hack */
GtkTreeDestroyCountFunc destroy_count_func;
gpointer destroy_count_data;
- GtkDestroyNotify destroy_count_destroy;
+ GDestroyNotify destroy_count_destroy;
/* Scroll timeout (e.g. during dnd) */
guint scroll_timeout;
@@ -245,7 +245,7 @@ struct _GtkTreeViewPrivate
GtkTreeViewSearchPositionFunc search_position_func;
GtkTreeViewSearchEqualFunc search_equal_func;
gpointer search_user_data;
- GtkDestroyNotify search_destroy;
+ GDestroyNotify search_destroy;
gpointer search_position_user_data;
GDestroyNotify search_position_destroy;
GtkWidget *search_window;
@@ -257,7 +257,7 @@ struct _GtkTreeViewPrivate
GtkTreeViewRowSeparatorFunc row_separator_func;
gpointer row_separator_data;
- GtkDestroyNotify row_separator_destroy;
+ GDestroyNotify row_separator_destroy;
gint level_indentation;