From 433faac95e86a4ed61176061c4b0e8451cc58bf5 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Tue, 21 Mar 2023 00:57:34 -0400 Subject: Rename change() to toggle() --- chordNote.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chordNote.cpp') 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]; }; -- cgit v1.2.3