Remove a little unused code.

git-svn-id: svn://localhost/ardour2/branches/3.0@11678 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington
2012-03-14 11:17:14 +00:00
parent 359e4c8656
commit d7829cf96a
2 changed files with 0 additions and 18 deletions

View File

@@ -3185,16 +3185,6 @@ Editor::map_transport_state ()
/* UNDO/REDO */
Editor::State::State (PublicEditor const * e)
{
selection = new Selection (e);
}
Editor::State::~State ()
{
delete selection;
}
void
Editor::begin_reversible_command (string name)
{

View File

@@ -1808,14 +1808,6 @@ class Editor : public PublicEditor, public PBD::ScopedConnectionList, public ARD
void update_title ();
void update_title_s (const std::string & snapshot_name);
struct State {
Selection* selection;
double frames_per_unit;
State (PublicEditor const * e);
~State ();
};
void instant_save ();
boost::shared_ptr<ARDOUR::AudioRegion> last_audition_region;