NO-OP: whitespace

This commit is contained in:
Robin Gareus 2019-10-15 22:47:57 +02:00
parent 4bf079810f
commit 6da5f96cf6
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04

View file

@ -26,9 +26,8 @@
#include "audio_clock.h" #include "audio_clock.h"
#include <list>
#include <ctime> #include <ctime>
#include <list>
#ifdef interface #ifdef interface
#undef interface #undef interface
@ -46,9 +45,9 @@
#include <gtkmm/treestore.h> #include <gtkmm/treestore.h>
#include <gtkmm/treeview.h> #include <gtkmm/treeview.h>
#include "ardour/types.h"
#include "ardour/session_handle.h"
#include "ardour/export_profile_manager.h" #include "ardour/export_profile_manager.h"
#include "ardour/session_handle.h"
#include "ardour/types.h"
namespace ARDOUR { namespace ARDOUR {
class Location; class Location;
@ -72,7 +71,6 @@ protected:
typedef ARDOUR::ExportProfileManager::TimespanStatePtr TimespanStatePtr; typedef ARDOUR::ExportProfileManager::TimespanStatePtr TimespanStatePtr;
public: public:
ExportTimespanSelector (ARDOUR::Session* session, ProfileManagerPtr manager, bool multi); ExportTimespanSelector (ARDOUR::Session* session, ProfileManagerPtr manager, bool multi);
virtual ~ExportTimespanSelector (); virtual ~ExportTimespanSelector ();
@ -83,7 +81,6 @@ public:
sigc::signal<void> CriticalSelectionChanged; sigc::signal<void> CriticalSelectionChanged;
protected: protected:
ProfileManagerPtr manager; ProfileManagerPtr manager;
TimespanStatePtr state; TimespanStatePtr state;
bool _realtime_available; bool _realtime_available;
@ -118,13 +115,16 @@ protected:
typedef ARDOUR::ExportProfileManager::TimeFormat TimeFormat; typedef ARDOUR::ExportProfileManager::TimeFormat TimeFormat;
struct TimeFormatCols : public Gtk::TreeModelColumnRecord struct TimeFormatCols : public Gtk::TreeModelColumnRecord {
{
public: public:
Gtk::TreeModelColumn<TimeFormat> format; Gtk::TreeModelColumn<TimeFormat> format;
Gtk::TreeModelColumn<std::string> label; Gtk::TreeModelColumn<std::string> label;
TimeFormatCols () { add(format); add(label); } TimeFormatCols ()
{
add (format);
add (label);
}
}; };
TimeFormatCols time_format_cols; TimeFormatCols time_format_cols;
Glib::RefPtr<Gtk::ListStore> time_format_list; Glib::RefPtr<Gtk::ListStore> time_format_list;
@ -132,8 +132,7 @@ protected:
/* View */ /* View */
struct RangeCols : public Gtk::TreeModelColumnRecord struct RangeCols : public Gtk::TreeModelColumnRecord {
{
public: public:
Gtk::TreeModelColumn<ARDOUR::Location*> location; Gtk::TreeModelColumn<ARDOUR::Location*> location;
Gtk::TreeModelColumn<std::string> label; Gtk::TreeModelColumn<std::string> label;
@ -146,7 +145,19 @@ protected:
Gtk::TreeModelColumn<ARDOUR::samplecnt_t> length_actual; Gtk::TreeModelColumn<ARDOUR::samplecnt_t> length_actual;
Gtk::TreeModelColumn<ARDOUR::samplecnt_t> start; Gtk::TreeModelColumn<ARDOUR::samplecnt_t> start;
RangeCols () { add (location); add(label); add(selected); add(realtime); add(name); add(length); add(date); add(timestamp); add(length_actual); add(start);} RangeCols ()
{
add (location);
add (label);
add (selected);
add (realtime);
add (name);
add (length);
add (date);
add (timestamp);
add (length_actual);
add (start);
}
}; };
RangeCols range_cols; RangeCols range_cols;
@ -165,7 +176,6 @@ public:
void allow_realtime_export (bool); void allow_realtime_export (bool);
private: private:
virtual void fill_range_list (); virtual void fill_range_list ();
void set_selection_from_state (); void set_selection_from_state ();
@ -182,12 +192,10 @@ public:
void allow_realtime_export (bool); void allow_realtime_export (bool);
private: private:
virtual void fill_range_list (); virtual void fill_range_list ();
void update_timespans (); void update_timespans ();
std::string range_id; std::string range_id;
}; };
#endif /* __export_timespan_selector_h__ */ #endif /* __export_timespan_selector_h__ */