X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fsurfaces%2Fcontrol_protocol%2Fbasic_ui.cc;h=bee47839140d46398d1c46cd2accda67737418df;hb=a98a67120eea8ebb817eebea048affc182ea054e;hp=27133ba94cbd12d5d1939e7fb2e62a3b215f1213;hpb=74dd5bd7060b337964d5ea5a3d419c26a62c10a6;p=ardour.git diff --git a/libs/surfaces/control_protocol/basic_ui.cc b/libs/surfaces/control_protocol/basic_ui.cc index 27133ba94c..bee4783914 100644 --- a/libs/surfaces/control_protocol/basic_ui.cc +++ b/libs/surfaces/control_protocol/basic_ui.cc @@ -24,7 +24,8 @@ #include #include -#include "basic_ui.h" +#include + #include "i18n.h" using namespace ARDOUR; @@ -144,6 +145,7 @@ void BasicUI::save_state () { session->save_state (""); + session->save_history(""); } void @@ -263,19 +265,19 @@ BasicUI::smpte_frames_per_hour () } void -BasicUI::smpte_time (jack_nframes_t where, SMPTE_t& smpte) +BasicUI::smpte_time (jack_nframes_t where, SMPTE::Time& smpte) { session->smpte_time (where, *((SMPTE::Time *) &smpte)); } void -BasicUI::smpte_to_sample (SMPTE_t& smpte, jack_nframes_t& sample, bool use_offset, bool use_subframes) const +BasicUI::smpte_to_sample (SMPTE::Time& smpte, jack_nframes_t& sample, bool use_offset, bool use_subframes) const { session->smpte_to_sample (*((SMPTE::Time*)&smpte), sample, use_offset, use_subframes); } void -BasicUI::sample_to_smpte (jack_nframes_t sample, SMPTE_t& smpte, bool use_offset, bool use_subframes) const +BasicUI::sample_to_smpte (jack_nframes_t sample, SMPTE::Time& smpte, bool use_offset, bool use_subframes) const { session->sample_to_smpte (sample, *((SMPTE::Time*)&smpte), use_offset, use_subframes); }