← Back to team overview

elementaryart team mailing list archive

[Merge] lp:~mefrio-g/granite/fix-977378 into lp:granite

 

Mario Guerriero has proposed merging lp:~mefrio-g/granite/fix-977378 into lp:granite.

Requested reviews:
  elementary Pantheon team (elementary-pantheon)
Related bugs:
  Bug #977378 in Granite: "`Granite.Widgets.TimePicker.input' is incompatible with base method `Gtk.SpinButton.input'"
  https://bugs.launchpad.net/granite/+bug/977378

For more details, see:
https://code.launchpad.net/~mefrio-g/granite/fix-977378/+merge/103880
-- 
https://code.launchpad.net/~mefrio-g/granite/fix-977378/+merge/103880
Your team elementaryart (old) is subscribed to branch lp:granite.
=== modified file 'lib/Widgets/TimePicker.vala'
--- lib/Widgets/TimePicker.vala	2012-04-13 04:58:32 +0000
+++ lib/Widgets/TimePicker.vala	2012-04-27 13:51:31 +0000
@@ -52,11 +52,6 @@
             adjustment.set_value (new_time);
         }
         
-        protected override int input (out double new_value) {
-            new_value = this.value;
-            return 1;
-        }
-
         protected override bool output () {    
             set_minutes ((int) this.value);
             return true;           


Follow ups