Commit 35fb3e0c authored by Yawning Angel's avatar Yawning Angel
Browse files

Fix compilation with Go 1.8.

parent 6477aea9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
Changes in version 0.0.4 - UNRELEASED:
 * Fix compilation with Go 1.8.

Changes in version 0.0.3 - 2017-01-18:
 * Bug 21057: Change the metadata URL(s) for the stable bundle.
+1 −1
Original line number Diff line number Diff line
@@ -300,7 +300,7 @@ func New(summary, body string, icon *gdk.Pixbuf) *Notification {

	runtime.SetFinalizer(n, func(n *Notification) {
		delete(callbackChans, unsafe.Pointer(n.n))
		C.g_object_unref(n.n)
		C.g_object_unref(C.gpointer(n.n))
	})
	n.SetImage(icon)