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:
Matthias Clasen 2009-01-31 02:28:40 +00:00
parent 6a8c49a43e
commit dbb97978a8
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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);
}