diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-05-17 19:34:53 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-05-17 19:34:53 +0200 |
commit | 4bb39eaad8dcff57c297aaf9542113d2eaed9067 (patch) | |
tree | 7327f811812c651923b312960a7abb589f93f90d /src/filelist.h | |
parent | af27aa93c6dfae8aeb38b97b5f10c23a80816b29 (diff) |
Make tabs closable. Load file list and master file state back into file list widget.
Diffstat (limited to 'src/filelist.h')
-rw-r--r-- | src/filelist.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/filelist.h b/src/filelist.h index 01cf684..e336bc1 100644 --- a/src/filelist.h +++ b/src/filelist.h @@ -31,12 +31,14 @@ #include <QAction> #include <QMenu> +class Instrument; + class FileList : public QListWidget { Q_OBJECT public: - FileList(); + FileList(Instrument& instrument); QString path; @@ -75,4 +77,5 @@ private: QAction* removeAllAction; QListWidgetItem* activeItem; + Instrument& instrument; }; |