1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:27:35 +00:00

Piano: Make TrackManager::next_track_index const

That's very much an informational API.
This commit is contained in:
kleines Filmröllchen 2022-05-13 23:39:42 +02:00 committed by Linus Groh
parent 7e04560af4
commit a861d2b728
2 changed files with 2 additions and 2 deletions

View file

@ -46,7 +46,7 @@ public:
void set_octave(Direction);
void set_octave(int octave);
void add_track();
int next_track_index();
int next_track_index() const;
private:
Vector<NonnullOwnPtr<Track>> m_tracks;