Rename the tips_data_list field back. (#447214)

2007-07-21  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtktooltips.[hc]: Rename the tips_data_list field
        back.  (#447214)



svn path=/trunk/; revision=18520
This commit is contained in:
Matthias Clasen 2007-07-21 13:19:11 +00:00 committed by Matthias Clasen
parent 22f1a7f918
commit 060fcd5b63
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2007-07-21 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktooltips.[hc]: Rename the tips_data_list field
back. (#447214)
2007-07-21 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version

View File

@ -91,7 +91,7 @@ gtk_tooltips_init (GtkTooltips *tooltips)
tooltips->tip_window = NULL;
tooltips->active_tips_data = NULL;
tooltips->_tips_data_list = NULL;
tooltips->tips_data_list = NULL;
tooltips->delay = DEFAULT_DELAY;
tooltips->enabled = TRUE;

View File

@ -63,7 +63,7 @@ struct _GtkTooltips
GtkWidget *tip_window;
GtkWidget *tip_label;
GtkTooltipsData *active_tips_data;
GList *_tips_data_list; /* unused */
GList *tips_data_list; /* unused */
guint delay : 30;
guint enabled : 1;