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