aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Effect/ladspa/ladspahost.h
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2011-03-02 20:26:55 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2011-03-02 20:26:55 +0000
commit3ba644457343b3a24bb260e53f8fb608c624580d (patch)
tree1563c8d1e80644c70d4b3f79f094ea06e72a0920 /src/plugins/Effect/ladspa/ladspahost.h
parentffef9491700965c061f4bdb7dd61c125d2eb2bf9 (diff)
downloadqmmp-3ba644457343b3a24bb260e53f8fb608c624580d.tar.gz
qmmp-3ba644457343b3a24bb260e53f8fb608c624580d.tar.bz2
qmmp-3ba644457343b3a24bb260e53f8fb608c624580d.zip
ladspa plugin: added support for read-only options
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2080 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Effect/ladspa/ladspahost.h')
-rw-r--r--src/plugins/Effect/ladspa/ladspahost.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/Effect/ladspa/ladspahost.h b/src/plugins/Effect/ladspa/ladspahost.h
index 9d65f0f49..1fb7af373 100644
--- a/src/plugins/Effect/ladspa/ladspahost.h
+++ b/src/plugins/Effect/ladspa/ladspahost.h
@@ -51,13 +51,14 @@ public:
enum Type
{
BUTTON = 0,
- SLIDER
+ SLIDER,
+ LABEL
};
double min;
double max;
double step;
LADSPA_Data *value;
- bool type;
+ int type;
QString name;
};