Skip to content

Commit

Permalink
Fix missed refactored member
Browse files Browse the repository at this point in the history
  • Loading branch information
lpugin committed Jun 10, 2024
1 parent 660eda5 commit 50011d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/iopae.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5146,7 +5146,7 @@ bool PAEInput::ParseDuration(
for (char c : paeStr) {
if (isdigit(c)) {
data_DURATION duration = DURATION_4;
if (m_isMensural) {
if (this->IsMensural()) {
switch (c) {
case '0': duration = DURATION_longa; break;
case '1': duration = DURATION_semibrevis; break;
Expand Down

0 comments on commit 50011d1

Please sign in to comment.