add timestamp to location and date sorting from timestamps to export_timespan_selector

This commit is contained in:
Nikolaus Gullotta 2019-04-12 15:41:14 -05:00
parent 3e7e89db8f
commit 59b6b46a13
4 changed files with 26 additions and 3 deletions

View file

@ -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;