Skip to content

Commit

Permalink
v0.9.72-alpha-9
Browse files Browse the repository at this point in the history
  • Loading branch information
jacques-menu committed Dec 26, 2024
1 parent 88bbd08 commit 443ef28
Show file tree
Hide file tree
Showing 13 changed files with 97 additions and 234 deletions.
2 changes: 1 addition & 1 deletion MusicFormatsVersionDate.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
December 25, 2024
December 26, 2024
2 changes: 1 addition & 1 deletion MusicFormatsVersionNumber.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.9.72-alpha-8
v0.9.72-alpha-9
2 changes: 1 addition & 1 deletion include/MusicFormatsVersionDate.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define MUSICFORMATS_VERSION_DATE "December 24, 2024"
#define MUSICFORMATS_VERSION_DATE "December 25, 2024"
2 changes: 1 addition & 1 deletion include/MusicFormatsVersionNumber.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define MUSICFORMATS_VERSION_NUMBER "v0.9.72-alpha1-step-7"
#define MUSICFORMATS_VERSION_NUMBER "v0.9.72-alpha-8"
2 changes: 1 addition & 1 deletion include/passes/mxsr2msr/mxsr2msrSkeletonPopulator.h
Original file line number Diff line number Diff line change
Expand Up @@ -1487,7 +1487,7 @@ class EXP mxsr2msrSkeletonPopulator :
// populate current note
// ------------------------------------------------------

void populateCurrentNoteBeforeItIsHandled (
void populateCurrentNoteWithCurrentInformations (
int inputLineNumber);

// harmonies and figured bass elements need
Expand Down
185 changes: 0 additions & 185 deletions musicxmlfiles/rests/WedgeOnMultiMeasureRest.ly

This file was deleted.

Binary file removed musicxmlfiles/rests/WedgeOnMultiMeasureRest.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/MusicFormatsVersionDate.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define MUSICFORMATS_VERSION_DATE "December 25, 2024"
#define MUSICFORMATS_VERSION_DATE "December 26, 2024"
2 changes: 1 addition & 1 deletion src/MusicFormatsVersionNumber.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define MUSICFORMATS_VERSION_NUMBER "v0.9.72-alpha-8"
#define MUSICFORMATS_VERSION_NUMBER "v0.9.72-alpha-9"
12 changes: 6 additions & 6 deletions src/passes/mxsr2msr/mxsr2msrEvents.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1562,9 +1562,9 @@ S_mxsrChordEvent mxsrEventsCollection::fetchChordBeginAtNoteSequentialNumber (
{
S_mxsrChordEvent result;

std::map <int, S_mxsrChordEvent>::const_iterator it;

it = fChordBeginsMap.find (noteSequentialNumber);
std::map <int, S_mxsrChordEvent>::const_iterator
it =
fChordBeginsMap.find (noteSequentialNumber);

if (it != fChordBeginsMap.end ()) {
result = (*it).second;
Expand All @@ -1578,9 +1578,9 @@ S_mxsrChordEvent mxsrEventsCollection::fetchChordEndAtNoteSequentialNumber (
{
S_mxsrChordEvent result;

std::map <int, S_mxsrChordEvent>::const_iterator it;

it = fChordEndsMap.find (noteSequentialNumber);
std::map <int, S_mxsrChordEvent>::const_iterator
it =
fChordEndsMap.find (noteSequentialNumber);

if (it != fChordEndsMap.end ()) {
result = (*it).second;
Expand Down
2 changes: 1 addition & 1 deletion src/passes/mxsr2msr/mxsr2msrSkeletonBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5501,7 +5501,7 @@ void mxsr2msrSkeletonBuilder::visitStart (S_chord& elt)
std::stringstream ss;

ss <<
"--> There is a chord event" <<
"--> visitStart (S_chord& elt): there is a chord event" <<
", fCurrentNoteSequentialNumber: " <<
fCurrentNoteSequentialNumber <<
", fPreviousNoteSequentialNumber: " <<
Expand Down
Loading

0 comments on commit 443ef28

Please sign in to comment.