diff --git a/src/LabelTrack.cpp b/src/LabelTrack.cpp index 3ff0cac5f..71aebec7f 100644 --- a/src/LabelTrack.cpp +++ b/src/LabelTrack.cpp @@ -1220,18 +1220,16 @@ void LabelStruct::AdjustEdge( int iEdge, double fNewTime) // We're moving the label. Adjust both left and right edge. void LabelStruct::MoveLabel( int iEdge, double fNewTime) { - // ANSWER-ME: Vigilant Sentry notes this "width" shadows the member var of same name. - // Is that what we actually want? - double width = getDuration(); + double fTimeSpan = getDuration(); if( iEdge < 0 ) { t = fNewTime; - t1 = fNewTime+width; + t1 = fNewTime+fTimeSpan; } else { - t = fNewTime-width; + t = fNewTime-fTimeSpan; t1 = fNewTime; } updated = true;