Skip to content

Commit

Permalink
Merge pull request #4179 from thomasgeissl/fix-ofParameter-typo
Browse files Browse the repository at this point in the history
Typo in ofParameter::setWithoutEventNotifcations
  • Loading branch information
bakercp committed Aug 2, 2015
2 parents fff4dce + e656d68 commit d423526
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/openFrameworks/types/ofParameter.h
Expand Up @@ -351,7 +351,7 @@ class ofParameter: public ofAbstractParameter{
ofParameter<ParameterType> & set(const string& name, const ParameterType & v);
ofParameter<ParameterType> & set(const string& name, const ParameterType & v, const ParameterType & min, const ParameterType & max);

ofParameter<ParameterType> & setWithoutEventNotifcations(const ParameterType & v);
ofParameter<ParameterType> & setWithoutEventNotifications(const ParameterType & v);

void setMin(const ParameterType & min);
void setMax(const ParameterType & max);
Expand Down Expand Up @@ -475,7 +475,7 @@ ofParameter<ParameterType> & ofParameter<ParameterType>::set(const string& name,
}

template<typename ParameterType>
inline ofParameter<ParameterType> & ofParameter<ParameterType>::setWithoutEventNotifcations(const ParameterType & v){
inline ofParameter<ParameterType> & ofParameter<ParameterType>::setWithoutEventNotifications(const ParameterType & v){
noEventsSetValue(v);
return *this;
}
Expand Down

0 comments on commit d423526

Please sign in to comment.