[gnome-clocks/redesign/stopwatch] Fix linting



commit a78e695b4e08dfff8322313d9fd22ee5df2082d2
Author: Bilal Elmoussaoui <bil elmoussaoui gmail com>
Date:   Tue Jan 28 17:51:15 2020 +0100

    Fix linting

 src/stopwatch.vala | 42 +++++++++++++++++++++---------------------
 1 file changed, 21 insertions(+), 21 deletions(-)
---
diff --git a/src/stopwatch.vala b/src/stopwatch.vala
index a98d89e..ad92903 100644
--- a/src/stopwatch.vala
+++ b/src/stopwatch.vala
@@ -25,9 +25,9 @@ private string render_duration (double duration) {
     int m;
     int s;
     double r;
-    Utils.time_to_hms (Math.floor(duration * 100) / 100, out h, out m, out s, out r);
+    Utils.time_to_hms (Math.floor (duration * 100) / 100, out h, out m, out s, out r);
     int cs = (int) (r * 10);
-    return "%02i\u200E∶%02i\u200E∶%02i.%i".printf (h.abs(), m.abs(), s.abs(), cs.abs());
+    return "%02i\u200E∶%02i\u200E∶%02i.%i".printf (h.abs (), m.abs (), s.abs (), cs.abs ());
 }
 
 public class Lap : GLib.Object {
@@ -64,9 +64,9 @@ private class LapsRow : Gtk.ListBoxRow {
 
             var difference = this.get_delta_duration ();
             if (difference > 0) {
-                difference_label.get_style_context().add_class ("negative-lap");
+                difference_label.get_style_context ().add_class ("negative-lap");
             } else if (difference < 0) {
-                difference_label.get_style_context().add_class ("positive-lap");
+                difference_label.get_style_context ().add_class ("positive-lap");
             }
         }
     }
@@ -150,7 +150,7 @@ public class Face : Gtk.Box, Clocks.Clock {
     construct {
         panel_id = STOPWATCH;
 
-        laps = new GLib.ListStore (typeof(Lap));
+        laps = new GLib.ListStore (typeof (Lap));
 
         timer = new GLib.Timer ();
         tick_id = 0;
@@ -221,15 +221,15 @@ public class Face : Gtk.Box, Clocks.Clock {
         state = State.RUNNING;
         add_tick ();
         start_btn.set_label (_("Pause"));
-        start_btn.get_style_context().remove_class ("suggested-action");
+        start_btn.get_style_context ().remove_class ("suggested-action");
 
         clear_btn.set_sensitive (true);
         clear_btn.set_label (_("Lap"));
-        clear_btn.get_style_context().remove_class ("destructive-action");
+        clear_btn.get_style_context ().remove_class ("destructive-action");
 
-        time_container.get_style_context().add_class ("running-stopwatch");
-        time_container.get_style_context().remove_class ("paused-stopwatch");
-        time_container.get_style_context().remove_class ("stopped-stopwatch");
+        time_container.get_style_context ().add_class ("running-stopwatch");
+        time_container.get_style_context ().remove_class ("paused-stopwatch");
+        time_container.get_style_context ().remove_class ("stopped-stopwatch");
     }
 
     private void stop () {
@@ -241,15 +241,15 @@ public class Face : Gtk.Box, Clocks.Clock {
         start_btn.get_style_context ().add_class ("suggested-action");
         clear_btn.set_sensitive (true);
         clear_btn.set_label (_("Clear"));
-        clear_btn.get_style_context().add_class ("destructive-action");
+        clear_btn.get_style_context ().add_class ("destructive-action");
 
-        time_container.get_style_context().add_class ("paused-stopwatch");
-        time_container.get_style_context().remove_class ("running-stopwatch");
-        time_container.get_style_context().remove_class ("stopped-stopwatch");
+        time_container.get_style_context ().add_class ("paused-stopwatch");
+        time_container.get_style_context ().remove_class ("running-stopwatch");
+        time_container.get_style_context ().remove_class ("stopped-stopwatch");
     }
 
     private void reset () {
-        laps_revealer.set_reveal_child(false);
+        laps_revealer.set_reveal_child (false);
 
         timer.reset ();
         state = State.RESET;
@@ -258,21 +258,21 @@ public class Face : Gtk.Box, Clocks.Clock {
         current_lap = 0;
 
         start_btn.set_label (_("Start"));
-        start_btn.get_style_context().add_class ("suggested-action");
+        start_btn.get_style_context ().add_class ("suggested-action");
 
         clear_btn.set_sensitive (false);
         clear_btn.set_label (_("Lap"));
-        clear_btn.get_style_context().remove_class ("destructive-action");
+        clear_btn.get_style_context ().remove_class ("destructive-action");
 
-        time_container.get_style_context().add_class ("stopped-stopwatch");
-        time_container.get_style_context().remove_class ("paused-stopwatch");
-        time_container.get_style_context().remove_class ("running-stopwatch");
+        time_container.get_style_context ().add_class ("stopped-stopwatch");
+        time_container.get_style_context ().remove_class ("paused-stopwatch");
+        time_container.get_style_context ().remove_class ("running-stopwatch");
         laps.remove_all ();
     }
 
     private double total_laps_duration () {
         double total = 0;
-        for(var i=0; i < laps.get_n_items (); i++) {
+        for (var i = 0; i < laps.get_n_items (); i++) {
             var lap = (Lap) laps.get_item (i);
             total += lap.duration;
         }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]