Remove unused variable

This commit is contained in:
Robin Gareus 2019-03-30 01:15:17 +01:00
parent f40456a649
commit 546d5d09b5
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 0 additions and 2 deletions

View File

@ -6315,7 +6315,6 @@ AutomationRangeDrag::start_grab (GdkEvent* event, Gdk::Cursor* cursor)
/* Get line states before we start changing things */
for (list<Line>::iterator i = _lines.begin(); i != _lines.end(); ++i) {
i->state = &i->line->get_state ();
i->original_fraction = y_fraction (i->line, current_pointer_y());
}
if (_ranges.empty()) {

View File

@ -1268,7 +1268,6 @@ private:
std::list<ControlPoint*> points; ///< points to drag on the line
std::pair<ARDOUR::samplepos_t, ARDOUR::samplepos_t> range; ///< the range of all points on the line, in session samples
XMLNode* state; ///< the XML state node before the drag
double original_fraction; ///< initial y-fraction before the drag
};
std::list<Line> _lines;