diff options
Diffstat (limited to 'chordNote.cpp')
-rw-r--r-- | chordNote.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chordNote.cpp b/chordNote.cpp index cea7ae5..e912a97 100644 --- a/chordNote.cpp +++ b/chordNote.cpp @@ -11,7 +11,7 @@ ChordNote::ChordNote(int btn, int startTime, int endTime) { ChordNote::~ChordNote() {}; -void ChordNote::change(int button) { +void ChordNote::toggle(int button) { notes[button] = !notes[button]; }; |