13
0

Fix uninitialised variable.

git-svn-id: svn://localhost/ardour2/branches/3.0@5340 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-07-09 15:00:12 +00:00
parent 4297071b3f
commit c3400bc877

View File

@ -52,6 +52,7 @@ Drag::Drag (Editor* e, ArdourCanvas::Item* i) :
_grab_frame (0),
_last_pointer_frame (0),
_current_pointer_frame (0),
_ending (false),
_had_movement (false),
_move_threshold_passed (false)
{
@ -541,7 +542,7 @@ RegionMotionDrag::motion (GdkEvent* event, bool first_move)
for (list<RegionView*>::const_iterator i = _views.begin(); i != _views.end(); ++i) {
RegionView* rv = (*i);
if (rv->region()->locked()) {
continue;
}