mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
add timestamp to location and date sorting from timestamps to export_timespan_selector
This commit is contained in:
parent
3e7e89db8f
commit
59b6b46a13
4 changed files with 26 additions and 3 deletions
|
|
@ -24,6 +24,7 @@
|
|||
#include "audio_clock.h"
|
||||
|
||||
#include <list>
|
||||
#include <ctime>
|
||||
|
||||
#ifdef interface
|
||||
#undef interface
|
||||
|
|
@ -136,8 +137,10 @@ protected:
|
|||
Gtk::TreeModelColumn<bool> realtime;
|
||||
Gtk::TreeModelColumn<std::string> name;
|
||||
Gtk::TreeModelColumn<std::string> length;
|
||||
Gtk::TreeModelColumn<std::string> date;
|
||||
Gtk::TreeModelColumn<time_t> timestamp;
|
||||
|
||||
RangeCols () { add (location); add(label); add(selected); add(realtime); add(name); add(length); }
|
||||
RangeCols () { add (location); add(label); add(selected); add(realtime); add(name); add(length); add(date); add(timestamp);}
|
||||
};
|
||||
RangeCols range_cols;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue