Warning fixes.

This commit is contained in:
Matthias Clasen 2004-07-12 14:38:10 +00:00
parent 027bbe0fd9
commit d11ab53e6e
5 changed files with 34 additions and 2 deletions

View File

@ -1,3 +1,11 @@
2004-07-12 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkentrycompletion.c: Warning fixes. (#147420,
Morten Welinder)
* gtk/gtkcombobox.c (gtk_combo_box_destroy): Pop down
first. (#147399, John Cupitt)
Mon Jul 12 01:56:26 2004 Matthias Clasen <maclas@gmx.de>
* gdk/x11/gdkwindow-x11.c (gdk_toplevel_x11_free_contents):

View File

@ -1,3 +1,11 @@
2004-07-12 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkentrycompletion.c: Warning fixes. (#147420,
Morten Welinder)
* gtk/gtkcombobox.c (gtk_combo_box_destroy): Pop down
first. (#147399, John Cupitt)
Mon Jul 12 01:56:26 2004 Matthias Clasen <maclas@gmx.de>
* gdk/x11/gdkwindow-x11.c (gdk_toplevel_x11_free_contents):

View File

@ -1,3 +1,11 @@
2004-07-12 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkentrycompletion.c: Warning fixes. (#147420,
Morten Welinder)
* gtk/gtkcombobox.c (gtk_combo_box_destroy): Pop down
first. (#147399, John Cupitt)
Mon Jul 12 01:56:26 2004 Matthias Clasen <maclas@gmx.de>
* gdk/x11/gdkwindow-x11.c (gdk_toplevel_x11_free_contents):

View File

@ -1,3 +1,11 @@
2004-07-12 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkentrycompletion.c: Warning fixes. (#147420,
Morten Welinder)
* gtk/gtkcombobox.c (gtk_combo_box_destroy): Pop down
first. (#147399, John Cupitt)
Mon Jul 12 01:56:26 2004 Matthias Clasen <maclas@gmx.de>
* gdk/x11/gdkwindow-x11.c (gdk_toplevel_x11_free_contents):

View File

@ -1089,7 +1089,7 @@ gtk_entry_completion_set_text_column (GtkEntryCompletion *completion,
cell,
"text", column);
g_object_notify (completion, "text_column");
g_object_notify (G_OBJECT (completion), "text_column");
}
/**
@ -1105,7 +1105,7 @@ gtk_entry_completion_set_text_column (GtkEntryCompletion *completion,
gint
gtk_entry_completion_get_text_column (GtkEntryCompletion *completion)
{
g_return_if_fail (GTK_IS_ENTRY_COMPLETION (completion));
g_return_val_if_fail (GTK_IS_ENTRY_COMPLETION (completion), -1);
return completion->priv->text_column;
}