# HG changeset patch # User Chris Cannam # Date 1507543761 -3600 # Node ID bd73a689c8afdf2cb3ff6e9590a63957a9288804 # Parent c7e68755c7ec1b4813f35b64da13a119156943d1 Fix reversed parameter names (fortunately the only call to this function currently uses the correct order) diff -r c7e68755c7ec -r bd73a689c8af base/RangeMapper.h --- a/base/RangeMapper.h Mon Oct 09 11:08:59 2017 +0100 +++ b/base/RangeMapper.h Mon Oct 09 11:09:21 2017 +0100 @@ -129,7 +129,7 @@ static void convertMinMax(int minpos, int maxpos, double minval, double maxval, - double &ratio, double &minlog); + double &minlog, double &ratio); virtual int getPositionForValue(double value) const; virtual int getPositionForValueUnclamped(double value) const;