Remove a few unused methods from ProcessorBox.
git-svn-id: svn://localhost/ardour2/branches/3.0@11617 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
42e0c0e9a3
commit
c74c4d3803
@ -807,12 +807,6 @@ ProcessorBox::object_drop(DnDVBox<ProcessorEntry>* source, ProcessorEntry* posit
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
ProcessorBox::update()
|
||||
{
|
||||
redisplay_processors ();
|
||||
}
|
||||
|
||||
void
|
||||
ProcessorBox::set_width (Width w)
|
||||
{
|
||||
@ -1655,19 +1649,6 @@ ProcessorBox::copy_processors (const ProcSelection& to_be_copied)
|
||||
_rr_selection.set (node);
|
||||
}
|
||||
|
||||
void
|
||||
ProcessorBox::processors_up ()
|
||||
{
|
||||
/* unimplemented */
|
||||
}
|
||||
|
||||
void
|
||||
ProcessorBox::processors_down ()
|
||||
{
|
||||
/* unimplemented */
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
ProcessorBox::delete_processors (const ProcSelection& targets)
|
||||
{
|
||||
@ -1888,18 +1869,6 @@ could not match the configuration of this track.");
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
ProcessorBox::activate_processor (boost::shared_ptr<Processor> r)
|
||||
{
|
||||
r->activate ();
|
||||
}
|
||||
|
||||
void
|
||||
ProcessorBox::deactivate_processor (boost::shared_ptr<Processor> r)
|
||||
{
|
||||
r->deactivate ();
|
||||
}
|
||||
|
||||
void
|
||||
ProcessorBox::get_selected_processors (ProcSelection& processors) const
|
||||
{
|
||||
|
@ -248,8 +248,6 @@ class ProcessorBox : public Gtk::HBox, public PluginInterestedObject, public ARD
|
||||
void set_route (boost::shared_ptr<ARDOUR::Route>);
|
||||
void set_width (Width);
|
||||
|
||||
void update();
|
||||
|
||||
void processor_operation (ProcessorOperation);
|
||||
|
||||
void select_all_processors ();
|
||||
@ -345,8 +343,6 @@ class ProcessorBox : public Gtk::HBox, public PluginInterestedObject, public ARD
|
||||
void delete_processors (const ProcSelection&);
|
||||
void paste_processors ();
|
||||
void paste_processors (boost::shared_ptr<ARDOUR::Processor> before);
|
||||
void processors_up ();
|
||||
void processors_down ();
|
||||
|
||||
void delete_dragged_processors (const std::list<boost::shared_ptr<ARDOUR::Processor> >&);
|
||||
void clear_processors ();
|
||||
@ -365,8 +361,6 @@ class ProcessorBox : public Gtk::HBox, public PluginInterestedObject, public ARD
|
||||
static Glib::RefPtr<Gtk::Action> edit_generic_action;
|
||||
void paste_processor_state (const XMLNodeList&, boost::shared_ptr<ARDOUR::Processor>);
|
||||
|
||||
void activate_processor (boost::shared_ptr<ARDOUR::Processor>);
|
||||
void deactivate_processor (boost::shared_ptr<ARDOUR::Processor>);
|
||||
void hide_processor_editor (boost::shared_ptr<ARDOUR::Processor>);
|
||||
void rename_processor (boost::shared_ptr<ARDOUR::Processor>);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user