mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed a typo
This commit is contained in:
parent
8deef0b4bc
commit
1eb3de3312
1 changed files with 10 additions and 10 deletions
|
|
@ -50,9 +50,9 @@ public:
|
|||
: start (other.start), end (other.end),
|
||||
interval (other.interval), skew (other.skew),
|
||||
symmetricSkew (other.symmetricSkew),
|
||||
convertFrom0To1Function (static_cast<ConverstionFunction&&> (other.convertFrom0To1Function)),
|
||||
convertTo0To1Function (static_cast<ConverstionFunction&&> (other.convertTo0To1Function)),
|
||||
snapToLegalValueFunction (static_cast<ConverstionFunction&&> (other.snapToLegalValueFunction))
|
||||
convertFrom0To1Function (static_cast<ConversionFunction&&> (other.convertFrom0To1Function)),
|
||||
convertTo0To1Function (static_cast<ConversionFunction&&> (other.convertTo0To1Function)),
|
||||
snapToLegalValueFunction (static_cast<ConversionFunction&&> (other.snapToLegalValueFunction))
|
||||
{
|
||||
}
|
||||
|
||||
|
|
@ -64,9 +64,9 @@ public:
|
|||
interval = other.interval;
|
||||
skew = other.skew;
|
||||
symmetricSkew = other.symmetricSkew;
|
||||
convertFrom0To1Function = static_cast<ConverstionFunction&&> (other.convertFrom0To1Function);
|
||||
convertTo0To1Function = static_cast<ConverstionFunction&&> (other.convertTo0To1Function);
|
||||
snapToLegalValueFunction = static_cast<ConverstionFunction&&> (other.snapToLegalValueFunction);
|
||||
convertFrom0To1Function = static_cast<ConversionFunction&&> (other.convertFrom0To1Function);
|
||||
convertTo0To1Function = static_cast<ConversionFunction&&> (other.convertTo0To1Function);
|
||||
snapToLegalValueFunction = static_cast<ConversionFunction&&> (other.snapToLegalValueFunction);
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
|
@ -274,11 +274,11 @@ private:
|
|||
return clampedValue;
|
||||
}
|
||||
|
||||
using ConverstionFunction = std::function<ValueType(ValueType, ValueType, ValueType)>;
|
||||
using ConversionFunction = std::function<ValueType(ValueType, ValueType, ValueType)>;
|
||||
|
||||
ConverstionFunction convertFrom0To1Function = {},
|
||||
convertTo0To1Function = {},
|
||||
snapToLegalValueFunction = {};
|
||||
ConversionFunction convertFrom0To1Function = {},
|
||||
convertTo0To1Function = {},
|
||||
snapToLegalValueFunction = {};
|
||||
};
|
||||
|
||||
} // namespace juce
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue