X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fexport_timespan_selector.h;h=688971554d134d68442782933b24627539f0b2db;hb=89d6f40e33933b12a40079e391a96856bfa79e2a;hp=d855df4d89c2d1f59b30ca5d0a52b3714453e04d;hpb=da8eec7a8311295ee91308eca9fae2146385c512;p=ardour.git diff --git a/gtk2_ardour/export_timespan_selector.h b/gtk2_ardour/export_timespan_selector.h index d855df4d89..688971554d 100644 --- a/gtk2_ardour/export_timespan_selector.h +++ b/gtk2_ardour/export_timespan_selector.h @@ -77,9 +77,10 @@ class ExportTimespanSelector : public Gtk::VBox, public ARDOUR::SessionHandlePtr void change_time_format (); std::string construct_label (ARDOUR::Location const * location) const; - std::string bbt_str (nframes_t frames) const; - std::string timecode_str (nframes_t frames) const; - std::string ms_str (nframes_t frames) const; + std::string construct_length (ARDOUR::Location const * location) const; + std::string bbt_str (framepos_t frames) const; + std::string timecode_str (framecnt_t frames) const; + std::string ms_str (framecnt_t frames) const; void update_range_name (std::string const & path, std::string const & new_text); @@ -111,10 +112,11 @@ class ExportTimespanSelector : public Gtk::VBox, public ARDOUR::SessionHandlePtr public: Gtk::TreeModelColumn location; Gtk::TreeModelColumn label; - Gtk::TreeModelColumn selected; + Gtk::TreeModelColumn selected; Gtk::TreeModelColumn name; + Gtk::TreeModelColumn length; - RangeCols () { add (location); add(label); add(selected); add(name); } + RangeCols () { add (location); add(label); add(selected); add(name); add(length); } }; RangeCols range_cols;