18305b2
From 5618985d3d7f830ebba0ef78e2ee6d3d6f9f6c55 Mon Sep 17 00:00:00 2001
18305b2
From: Ernestas Kulik <ekulik@redhat.com>
18305b2
Date: Fri, 15 May 2020 15:49:59 +0200
18305b2
Subject: [PATCH] applet: Pass instance pointer to signal handler
18305b2
18305b2
Some fallout from 802a40a2f7c971b6533162e70b860e01ae3b5a27.
18305b2
18305b2
https://bugzilla.redhat.com/show_bug.cgi?id=1836190
18305b2
---
18305b2
 src/applet/abrt-applet-application.c | 2 +-
18305b2
 1 file changed, 1 insertion(+), 1 deletion(-)
18305b2
18305b2
diff --git a/src/applet/abrt-applet-application.c b/src/applet/abrt-applet-application.c
18305b2
index d982c9f9..8ea653bb 100644
18305b2
--- a/src/applet/abrt-applet-application.c
18305b2
+++ b/src/applet/abrt-applet-application.c
18305b2
@@ -177,7 +177,7 @@ abrt_applet_application_init (AbrtAppletApplication *self)
18305b2
     g_signal_connect (network_monitor, "notify::connectivity",
18305b2
                       G_CALLBACK (on_connectivity_changed), self);
18305b2
     g_signal_connect (network_monitor, "notify::network-available",
18305b2
-                      G_CALLBACK (on_connectivity_changed), NULL);
18305b2
+                      G_CALLBACK (on_connectivity_changed), self);
18305b2
 
18305b2
     self->deferred_problems = g_ptr_array_new_with_free_func (g_object_unref);
18305b2
 }
18305b2
-- 
18305b2
2.26.2
18305b2