diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-09-29 16:29:21 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-09-29 16:29:21 +0200 |
commit | 46efa2def1212dcb2610c545a78c8ab81bb22bbf (patch) | |
tree | 5bf8e1991126ba5795cdde44578a370a7a1b4a1f /src/project.h | |
parent | c975247f9742bd7fcf5ae7d8ab174ed8728bb64c (diff) |
Add main attribute to the filelist. Use QHash random seed hack in all places where QDomDocument is being used.
Diffstat (limited to 'src/project.h')
-rw-r--r-- | src/project.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/project.h b/src/project.h index b0f9060..a6593d8 100644 --- a/src/project.h +++ b/src/project.h @@ -54,12 +54,16 @@ public: int getChannelMapId() const; void setChannelMapId(int id); + bool getMainChannel() const; + void setMainChannel(bool main); + private: friend class ProjectSerialiser; QString file; QString name; int channel_map_id; + bool main_channel; int id; Instrument& instrument; |