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:
@ -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>
|
2009-01-30 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
Bug 359288 – Toolbar items are not shown after hiding
|
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)
|
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);
|
gtk_activatable_reset (GTK_ACTIVATABLE (recent_chooser), action);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user