[gnome-clocks/bilelmoussaoui/timer-fixes] Timer: fix ringing
- From: Tobias Bernard <tbernard src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-clocks/bilelmoussaoui/timer-fixes] Timer: fix ringing
- Date: Sat, 1 Feb 2020 15:52:28 +0000 (UTC)
commit 8e9feefa08fe862d7b6e87ff193feb66cb644b7a
Author: Tobias Bernard <tbernard gnome org>
Date: Sat Feb 1 16:51:56 2020 +0100
Timer: fix ringing
src/timer.vala | 10 +---------
1 file changed, 1 insertion(+), 9 deletions(-)
---
diff --git a/src/timer.vala b/src/timer.vala
index 415f237..a6c7839 100644
--- a/src/timer.vala
+++ b/src/timer.vala
@@ -295,8 +295,6 @@ public class Row : Gtk.ListBoxRow {
public signal void deleted ();
public signal void edited ();
- public signal void ringing ();
-
public Row (Item item) {
Object (item: item);
@@ -306,12 +304,6 @@ public class Row : Gtk.ListBoxRow {
item.start.connect (() => this.start ());
item.pause.connect (() => this.pause ());
item.reset.connect (() => this.reset ());
- /*destroy.connect (() => {
- if (timeout_id != 0) {
- GLib.Source.remove (timeout_id);
- timeout_id = 0;
- }
- });*/
delete_button.clicked.connect (() => deleted ());
reset ();
@@ -459,7 +451,7 @@ public class Face : Gtk.Stack, Clocks.Clock {
var row = new Row ((Item) timer);
row.deleted.connect (() => remove_timer ((Item) timer));
row.edited.connect (() => save ());
- row.ringing.connect (() => ring ());
+ ((Item)timer).ring.connect (() => ring ());
return row;
});
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]