Fix uninitialized variable
[ardour.git] / gtk2_ardour / step_entry.h
index 685f859302301b84f2fdd59bd8a8b6cedc9e6580..b81ae89227dacf5aafebff7f88a645f82bc48887 100644 (file)
@@ -41,14 +41,14 @@ public:
        void note_off_event_handler (int note);
        void rest_event_handler ();
 
-       Evoral::Beats note_length();
+       Temporal::Beats note_length();
        uint8_t note_velocity() const;
        uint8_t note_channel() const;
 
        int current_octave () const { return (int) floor (octave_adjustment.get_value()); }
 
 private:
-       Evoral::Beats _current_note_length;
+       Temporal::Beats _current_note_length;
        uint8_t _current_note_velocity;
 
        Gtk::VBox packer;