summaryrefslogtreecommitdiff
path: root/src/selectioneditor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/selectioneditor.h')
-rw-r--r--src/selectioneditor.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/selectioneditor.h b/src/selectioneditor.h
index feb9200..cdbf2de 100644
--- a/src/selectioneditor.h
+++ b/src/selectioneditor.h
@@ -31,12 +31,14 @@
#include <QLineEdit>
#include "selection.h"
+class Instrument;
+
class SelectionEditor
: public QWidget
{
Q_OBJECT
public:
- SelectionEditor(Selections& selections);
+ SelectionEditor(Selections& selections, Instrument& instrument);
public slots:
void added(sel_id_t id);
@@ -59,4 +61,6 @@ private:
QLineEdit* fadeout;
QLineEdit* energy;
QLineEdit* name;
+
+ Instrument& instrument;
};