File tree Expand file tree Collapse file tree
src/plugins/coreplugin/project/clipboard Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,39 +30,39 @@ namespace Core {
3030 m_data = tempos;
3131 }
3232
33- QList<QDspx::Tempo> tempos () {
33+ QList<QDspx::Tempo> tempos () const {
3434 return std::get<Tempo>(m_data);
3535 }
3636
3737 void setLabels (const QList<QDspx::Label> &labels) {
3838 m_data = labels;
3939 }
4040
41- QList<QDspx::Label> labels () {
41+ QList<QDspx::Label> labels () const {
4242 return std::get<Label>(m_data);
4343 }
4444
4545 void setTracks (const QList<QDspx::Track> &tracks) {
4646 m_data = tracks;
4747 }
4848
49- QList<QDspx::Track> tracks () {
49+ QList<QDspx::Track> tracks () const {
5050 return std::get<Track>(m_data);
5151 }
5252
5353 void setClips (const QList<QList<QDspx::ClipRef>> &clips) {
5454 m_data = clips;
5555 }
5656
57- QList<QList<QDspx::ClipRef>> clips () {
57+ QList<QList<QDspx::ClipRef>> clips () const {
5858 return std::get<Clip>(m_data);
5959 }
6060
6161 void setNotes (const QList<QDspx::Note> ¬es) {
6262 m_data = notes;
6363 }
6464
65- QList<QDspx::Note> notes () {
65+ QList<QDspx::Note> notes () const {
6666 return std::get<Note>(m_data);
6767 }
6868
You can’t perform that action at this time.
0 commit comments