Skip to content

Commit

Permalink
Rollback of compilation warnings to have it clean on Ubuntu.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvorka committed Feb 3, 2024
1 parent 09c4eae commit c42a07e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/model/outline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ void Outline::addNote(Note* note, int offset)
void Outline::addNotes(std::vector<Note*>& notesToAdd, int offset)
{
if(notesToAdd.size()) {
for(size_t i=notesToAdd.size()-1; i>=0; i--) {
for(int i=notesToAdd.size()-1; i>=0; i--) {
notesToAdd[i]->makeModified();
addNote(notesToAdd[i], offset);
}
Expand Down

0 comments on commit c42a07e

Please sign in to comment.