13
0

remove unused arguments to keep gcc quiet

git-svn-id: svn://localhost/ardour2/branches/3.0@9291 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-04-05 01:03:44 +00:00
parent fedc155b94
commit e54d71ec3d
3 changed files with 2 additions and 4 deletions

View File

@ -907,7 +907,6 @@ Editor::finish_bringing_in_material (boost::shared_ptr<Region> region, uint32_t
existing_track->set_name (region->name());
}
boost::shared_ptr<Playlist> playlist = existing_track->playlist();
boost::shared_ptr<Region> copy (RegionFactory::create (region));
begin_reversible_command (Operations::insert_file);
@ -918,7 +917,6 @@ Editor::finish_bringing_in_material (boost::shared_ptr<Region> region, uint32_t
break;
}
case ImportAsTapeTrack:
{
if (!ar) {

View File

@ -102,7 +102,7 @@ class Plugin : public PBD::StatefulDestructible, public Latent
XMLNode& get_state ();
virtual int set_state (const XMLNode &, int version);
virtual void set_insert_info(const PluginInsert* insert) {}
virtual void set_insert_info (const PluginInsert*) {}
virtual std::string unique_id() const = 0;
virtual const char * label() const = 0;

View File

@ -119,7 +119,7 @@ public:
virtual void cycle_end (pframes_t) = 0;
virtual void cycle_split () = 0;
virtual Buffer& get_buffer (pframes_t nframes) = 0;
virtual void flush_buffers (pframes_t nframes, framepos_t /*time*/) {}
virtual void flush_buffers (pframes_t /*nframes*/, framepos_t /*time*/) {}
virtual void transport_stopped () {}
bool physically_connected () const;