mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
Remove unused private fields (Wunused-private-field)
This commit is contained in:
parent
c57c230dfc
commit
1b4aaea92a
4 changed files with 2 additions and 9 deletions
|
|
@ -91,7 +91,6 @@ public:
|
||||||
void dump () const;
|
void dump () const;
|
||||||
|
|
||||||
NoteMode _note_mode;
|
NoteMode _note_mode;
|
||||||
samplepos_t _read_end;
|
|
||||||
|
|
||||||
RTMidiBuffer _rendered;
|
RTMidiBuffer _rendered;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,6 @@ using namespace std;
|
||||||
MidiPlaylist::MidiPlaylist (Session& session, const XMLNode& node, bool hidden)
|
MidiPlaylist::MidiPlaylist (Session& session, const XMLNode& node, bool hidden)
|
||||||
: Playlist (session, node, DataType::MIDI, hidden)
|
: Playlist (session, node, DataType::MIDI, hidden)
|
||||||
, _note_mode(Sustained)
|
, _note_mode(Sustained)
|
||||||
, _read_end(0)
|
|
||||||
{
|
{
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
XMLProperty const * prop = node.property("type");
|
XMLProperty const * prop = node.property("type");
|
||||||
|
|
@ -69,14 +68,12 @@ MidiPlaylist::MidiPlaylist (Session& session, const XMLNode& node, bool hidden)
|
||||||
MidiPlaylist::MidiPlaylist (Session& session, string name, bool hidden)
|
MidiPlaylist::MidiPlaylist (Session& session, string name, bool hidden)
|
||||||
: Playlist (session, name, DataType::MIDI, hidden)
|
: Playlist (session, name, DataType::MIDI, hidden)
|
||||||
, _note_mode(Sustained)
|
, _note_mode(Sustained)
|
||||||
, _read_end(0)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
MidiPlaylist::MidiPlaylist (boost::shared_ptr<const MidiPlaylist> other, string name, bool hidden)
|
MidiPlaylist::MidiPlaylist (boost::shared_ptr<const MidiPlaylist> other, string name, bool hidden)
|
||||||
: Playlist (other, name, hidden)
|
: Playlist (other, name, hidden)
|
||||||
, _note_mode(other->_note_mode)
|
, _note_mode(other->_note_mode)
|
||||||
, _read_end(0)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -87,7 +84,6 @@ MidiPlaylist::MidiPlaylist (boost::shared_ptr<const MidiPlaylist> other,
|
||||||
bool hidden)
|
bool hidden)
|
||||||
: Playlist (other, start, dur, name, hidden)
|
: Playlist (other, start, dur, name, hidden)
|
||||||
, _note_mode(other->_note_mode)
|
, _note_mode(other->_note_mode)
|
||||||
, _read_end(0)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,6 @@ class OSCCueObserver
|
||||||
ArdourSurface::OSC::OSCSurface* sur;
|
ArdourSurface::OSC::OSCSurface* sur;
|
||||||
float _last_meter;
|
float _last_meter;
|
||||||
float _last_signal;
|
float _last_signal;
|
||||||
bool _hidden;
|
|
||||||
std::vector<uint32_t> gain_timeout;
|
std::vector<uint32_t> gain_timeout;
|
||||||
bool tick_enable;
|
bool tick_enable;
|
||||||
std::vector<float> _last_gain;
|
std::vector<float> _last_gain;
|
||||||
|
|
|
||||||
|
|
@ -129,7 +129,6 @@ private:
|
||||||
PBD::ScopedConnectionList stripable_connections;
|
PBD::ScopedConnectionList stripable_connections;
|
||||||
PBD::ScopedConnectionList subview_connections;
|
PBD::ScopedConnectionList subview_connections;
|
||||||
PBD::ScopedConnectionList send_connections;
|
PBD::ScopedConnectionList send_connections;
|
||||||
int eq_band;
|
|
||||||
|
|
||||||
int _trickle_counter;
|
int _trickle_counter;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue