13
0

remove unused local variable

This commit is contained in:
Paul Davis 2019-07-08 09:59:14 -06:00
parent f52781b46b
commit 192a8b7ec0

View File

@ -1763,7 +1763,6 @@ Playlist::region_changed (const PropertyChange& what_changed, boost::shared_ptr<
{
PropertyChange our_interests;
PropertyChange bounds;
PropertyChange pos_and_length;
bool save = false;
if (in_set_state || in_flush) {
@ -1778,9 +1777,6 @@ Playlist::region_changed (const PropertyChange& what_changed, boost::shared_ptr<
bounds.add (Properties::position);
bounds.add (Properties::length);
pos_and_length.add (Properties::position);
pos_and_length.add (Properties::length);
if (what_changed.contains (bounds)) {
region_bounds_changed (what_changed, region);
save = !(_splicing || _nudging);