From: Matthias Clasen Date: Fri, 2 Jan 2009 20:59:37 +0000 (+0000) Subject: Fix the build on OS X X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=f6212513f8264220dcd8bbb8767f657b9ad67732;p=~andy%2Fgtk Fix the build on OS X svn path=/trunk/; revision=22044 --- diff --git a/ChangeLog b/ChangeLog index 4f98a2b69..e399b8933 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2009-01-02 Matthias Clasen + + Bug 566334 – compile failure for gtk+ on Mac OS X + + * gtk/gtkstatusicon.c: Fix the build on OS X. + Reported by Bart Cortooms. + 2009-01-02 Matthias Clasen Bug 566083 – Icon pixmap hardcoded during DnD diff --git a/gtk/gtkstatusicon.c b/gtk/gtkstatusicon.c index 0b231c2f5..c61d42b41 100644 --- a/gtk/gtkstatusicon.c +++ b/gtk/gtkstatusicon.c @@ -2689,7 +2689,7 @@ gtk_status_icon_set_tooltip_text (GtkStatusIcon *status_icon, #endif #ifdef GDK_WINDOWING_QUARTZ QUARTZ_POOL_ALLOC; - [priv->status_item setToolTip:tooltip_text]; + [priv->status_item setToolTip:text]; QUARTZ_POOL_RELEASE; g_free (priv->tooltip_text);