summaryrefslogtreecommitdiffstats
path: root/src/control/controlobjectscript.h
diff options
context:
space:
mode:
authorRJ Skerry-Ryan <rryan@mixxx.org>2018-10-25 22:39:12 -0700
committerRJ Skerry-Ryan <rryan@mixxx.org>2018-10-26 00:14:38 -0700
commit10ec4cb3d6c5d6a3d7727ef74a16c7c3526ed30f (patch)
tree033cc4304a434c024d3ffde5450ac0d51908ee26 /src/control/controlobjectscript.h
parent398b533a847db24ddb6f3d30e1d2964f62308cbf (diff)
Fix some issues identified by clazy.
Diffstat (limited to 'src/control/controlobjectscript.h')
-rw-r--r--src/control/controlobjectscript.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/control/controlobjectscript.h b/src/control/controlobjectscript.h
index 15e29aedf6..61079333d5 100644
--- a/src/control/controlobjectscript.h
+++ b/src/control/controlobjectscript.h
@@ -1,6 +1,8 @@
#ifndef CONTROLOBJECTSCRIPT_H
#define CONTROLOBJECTSCRIPT_H
+#include <QVector>
+
#include "controllers/controllerengine.h"
#include "controllers/controllerdebug.h"
#include "control/controlproxy.h"
@@ -36,7 +38,7 @@ class ControlObjectScript : public ControlProxy {
void slotValueChanged(double v, QObject*);
private:
- QList<ScriptConnection> m_scriptConnections;
+ QVector<ScriptConnection> m_scriptConnections;
};
#endif // CONTROLOBJECTSCRIPT_H