diff options
author | Florian Jung <flo@windfisch.org> | 2011-04-17 15:46:34 +0000 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2011-04-17 15:46:34 +0000 |
commit | a166bf3113c24a02c154bcd94f5f4291d6e675fe (patch) | |
tree | 4d8f5a2d6a6b675e976c764b91aa8b62cbb19f2b /muse2/al | |
parent | 47a10173ea203de2036dd00791fe5c24fb673135 (diff) | |
parent | aab05a914e357938f0ccb3d592186320e0646366 (diff) |
a mastertrack keymap editor has been inserted and used
merged with current trunk, removed attic/
Diffstat (limited to 'muse2/al')
-rw-r--r-- | muse2/al/sig.cpp | 6 | ||||
-rw-r--r-- | muse2/al/sig.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/muse2/al/sig.cpp b/muse2/al/sig.cpp index 7eeae6be..293a5b3e 100644 --- a/muse2/al/sig.cpp +++ b/muse2/al/sig.cpp @@ -64,6 +64,12 @@ SigList::SigList() insert(std::pair<const unsigned, SigEvent*> (MAX_TICK, new SigEvent(TimeSignature(4, 4), 0))); } +SigList::~SigList() + { + for (iSigEvent i = begin(); i != end(); ++i) + delete i->second; + } + //--------------------------------------------------------- // add // signatures are only allowed at the beginning of diff --git a/muse2/al/sig.h b/muse2/al/sig.h index ed18981f..618cd53c 100644 --- a/muse2/al/sig.h +++ b/muse2/al/sig.h @@ -85,6 +85,7 @@ class SigList : public SIGLIST { public: SigList(); + ~SigList(); void clear(); void add(unsigned tick, const TimeSignature& s); //void add(unsigned tick, int z, int n); |