mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
Avoid a compiler warning. Patch by Magnus Boman.
* gtk/gtkrecentchooser.c (gtk_recent_chooser_set_use_action_appearance): Avoid a compiler warning. Patch by Magnus Boman. svn path=/trunk/; revision=22261
This commit is contained in:
parent
6a8c49a43e
commit
dbb97978a8
@ -1,3 +1,10 @@
|
||||
2009-01-30 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Bug 569918 – 64bit portability issue in gtkrecentchooser.c
|
||||
|
||||
* gtk/gtkrecentchooser.c (gtk_recent_chooser_set_use_action_appearance):
|
||||
Avoid a compiler warning. Patch by Magnus Boman.
|
||||
|
||||
2009-01-30 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Bug 359288 – Toolbar items are not shown after hiding
|
||||
|
@ -1184,7 +1184,7 @@ _gtk_recent_chooser_set_use_action_appearance (GtkRecentChooser *recent_chooser,
|
||||
if (use_action_appearance != use_appearance)
|
||||
{
|
||||
|
||||
g_object_set_qdata (G_OBJECT (recent_chooser), quark_gtk_use_action_appearance, !GINT_TO_POINTER (use_appearance));
|
||||
g_object_set_qdata (G_OBJECT (recent_chooser), quark_gtk_use_action_appearance, GINT_TO_POINTER (!use_appearance));
|
||||
|
||||
gtk_activatable_reset (GTK_ACTIVATABLE (recent_chooser), action);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user