From a9e608411f519b5cb1bc268f7384dc8449221d4f Mon Sep 17 00:00:00 2001 From: Alberts Muktupavels Date: Tue, 11 Sep 2018 14:33:33 +0300 Subject: na-tray: avoid deprecated g_type_class_add_private origin commit: https://gitlab.gnome.org/GNOME/gnome-panel/commit/cb2cc3a --- applets/notification_area/system-tray/fixedtip.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/applets/notification_area/system-tray/fixedtip.c b/applets/notification_area/system-tray/fixedtip.c index 2278e9ca..f5817cdd 100644 --- a/applets/notification_area/system-tray/fixedtip.c +++ b/applets/notification_area/system-tray/fixedtip.c @@ -39,7 +39,7 @@ struct _NaFixedTipPrivate GtkOrientation orientation; }; -G_DEFINE_TYPE (NaFixedTip, na_fixed_tip, GTK_TYPE_WINDOW) +G_DEFINE_TYPE_WITH_PRIVATE (NaFixedTip, na_fixed_tip, GTK_TYPE_WINDOW) static gboolean button_press_handler (GtkWidget *fixedtip, @@ -94,8 +94,6 @@ na_fixed_tip_class_init (NaFixedTipClass *class) NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); - - g_type_class_add_private (class, sizeof (NaFixedTipPrivate)); } /* Did you already see this code? Yes, it's gtk_tooltips_ force_window() ;-) */ @@ -104,8 +102,7 @@ na_fixed_tip_init (NaFixedTip *fixedtip) { GtkWidget *label; - fixedtip->priv = G_TYPE_INSTANCE_GET_PRIVATE (fixedtip, NA_TYPE_FIXED_TIP, - NaFixedTipPrivate); + fixedtip->priv = na_fixed_tip_get_instance_private (fixedtip); gtk_window_set_type_hint (GTK_WINDOW (fixedtip), GDK_WINDOW_TYPE_HINT_TOOLTIP); -- cgit v1.2.1