Remove unused variable.

git-svn-id: svn://localhost/ardour2/branches/3.0@11101 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-12-28 18:55:25 +00:00
parent 67914e4fc7
commit 0d46ad4ca5
2 changed files with 0 additions and 4 deletions

View File

@ -290,7 +290,6 @@ public:
bool _frozen;
uint32_t subcnt;
PBD::ID _orig_track_id;
framecnt_t freeze_length;
bool auto_partition;
uint32_t _combine_ops;

View File

@ -189,7 +189,6 @@ Playlist::Playlist (boost::shared_ptr<const Playlist> other, string namestr, boo
_frozen = other->_frozen;
layer_op_counter = other->layer_op_counter;
freeze_length = other->freeze_length;
}
Playlist::Playlist (boost::shared_ptr<const Playlist> other, framepos_t start, framecnt_t cnt, string str, bool hide)
@ -320,7 +319,6 @@ Playlist::init (bool hide)
subcnt = 0;
_frozen = false;
layer_op_counter = 0;
freeze_length = 0;
_combine_ops = 0;
_relayer_suspended = false;
@ -433,7 +431,6 @@ void
Playlist::delay_notifications ()
{
g_atomic_int_inc (&block_notifications);
freeze_length = _get_extent().second;
}
/** @param from_undo true if this release is triggered by the end of an undo on this playlist */