summaryrefslogtreecommitdiffstats
path: root/src/controleffectknob.h
diff options
context:
space:
mode:
authorRJ Ryan <rryan@mixxx.org>2014-03-28 10:13:50 -0400
committerRJ Ryan <rryan@mixxx.org>2014-03-28 10:13:50 -0400
commitf2516816592905e87def8c00eae33f1a4757eecb (patch)
treef640771db9cf12bf95105bdc3747b5a8f40e7268 /src/controleffectknob.h
parent45bcb3e62c162aaea9408cc41dd0629aef85b9c9 (diff)
Some minor cleanups to ControlEffectKnob.
Diffstat (limited to 'src/controleffectknob.h')
-rw-r--r--src/controleffectknob.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/controleffectknob.h b/src/controleffectknob.h
index 792352e064..1266b830bc 100644
--- a/src/controleffectknob.h
+++ b/src/controleffectknob.h
@@ -2,14 +2,17 @@
#define CONTROLEFFECTKNOB_H
#include "controlpotmeter.h"
+#include "effects/effectmanifestparameter.h"
class ControlEffectKnob : public ControlPotmeter {
Q_OBJECT
public:
ControlEffectKnob(ConfigKey key, double dMinValue = 0.0, double dMaxValue = 1.0);
- void setType(double type);
+
+ void setType(EffectManifestParameter::ControlHint type);
+
private:
- double m_type;
+ EffectManifestParameter::ControlHint m_type;
};
#endif // CONTROLLEFFECTKNOB_H