[gnome-shell/wip/fmuellner/calendar-warnings: 35/35] calendar: Disconnect signals when resetting notification
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/fmuellner/calendar-warnings: 35/35] calendar: Disconnect signals when resetting notification
- Date: Wed, 16 Jan 2019 17:46:25 +0000 (UTC)
commit b57832716abb8349569af7606c33c138bc92b2f5
Author: Florian Müllner <fmuellner gnome org>
Date: Fri Nov 23 16:22:45 2018 +0100
calendar: Disconnect signals when resetting notification
Since commit 5fb8d4f730, a NotificationMessage's notification property
is reset to null when the notification is destroyed. However at that
point we still have connected signal handlers around that we'll try
to disconnect later.
Avoid the warnings by disconnecting and resetting the handler IDs at
the same time as the notification.
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/308
js/ui/calendar.js | 4 ++++
1 file changed, 4 insertions(+)
---
diff --git a/js/ui/calendar.js b/js/ui/calendar.js
index c4d362537..dfe1bb948 100644
--- a/js/ui/calendar.js
+++ b/js/ui/calendar.js
@@ -779,6 +779,7 @@ var NotificationMessage = new Lang.Class({
this.notification.destroy(MessageTray.NotificationDestroyedReason.DISMISSED);
});
this._destroyId = notification.connect('destroy', () => {
+ this._disconnectNotificationSignals();
this.notification = null;
if (!this._closed)
this.close();
@@ -808,7 +809,10 @@ var NotificationMessage = new Lang.Class({
_onDestroy() {
this.parent();
+ this._disconnectNotificationSignals();
+ },
+ _disconnectNotificationSignals() {
if (this._updatedId)
this.notification.disconnect(this._updatedId);
this._updatedId = 0;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]