Skip to content

Commit

Permalink
Fixup - remove unnecessary cast
Browse files Browse the repository at this point in the history
  • Loading branch information
zonkmachine committed Oct 23, 2017
1 parent eb88dcd commit 5dfd6a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/editors/AutomationEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ void AutomationEditor::mouseReleaseEvent(QMouseEvent * mouseEvent )

void AutomationEditor::removePoints( int x0, int x1 )
{
int deltax = qRound( qAbs<float>( x1 - x0 ) );
int deltax = qAbs( x1 - x0 );
int x = x0;
int xstep;

Expand Down

0 comments on commit 5dfd6a3

Please sign in to comment.