Skip to content

Commit 57b6180

Browse files
committed
y
1 parent fc321fa commit 57b6180

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

importexport/musicxml/importmxmlpass2.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3276,6 +3276,7 @@ void MusicXMLParserDirection::direction(const QString& partId,
32763276
else
32773277
skipLogCurrElem();
32783278
}
3279+
handleTempo();
32793280
handleRepeats(measure, track, tick + _offset);
32803281
handleNmiCmi(measure, track, tick + _offset, delayedDirections);
32813282
handleChordSym(track, tick + _offset, harmonyMap);
@@ -3617,7 +3618,7 @@ void MusicXMLParserDirection::directionType(QList<MusicXmlSpannerDesc>& starts,
36173618

36183619
textToDynamic(nextPart);
36193620
textToCrescLine(nextPart);
3620-
handleTempo(nextPart);
3621+
//handleTempo(nextPart);
36213622
_wordsText += nextPart;
36223623
}
36233624
else if (_e.name() == "rehearsal") {
@@ -4391,7 +4392,7 @@ void MusicXMLParserDirection::handleChordSym(const int track, const Fraction tic
43914392
_wordsText.clear();
43924393
}
43934394

4394-
void MusicXMLParserDirection::handleTempo(QString& wordsString)
4395+
void MusicXMLParserDirection::handleTempo(/*QString& wordsString*/)
43954396
{
43964397
// Pick up any tempo markings which may have been exported from Sibelius as <words>
43974398
// eg. andante (q = c. 90)

importexport/musicxml/importmxmlpass2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ class MusicXMLParserDirection {
445445
void handleRepeats(Measure* measure, const int track, const Fraction tick);
446446
QString matchRepeat() const;
447447
void handleNmiCmi(Measure* measure, const int track, const Fraction tick, DelayedDirectionsList& delayedDirections);
448-
void handleTempo(QString& wordsString);
448+
void handleTempo(/*QString& wordsString*/);
449449
void handleChordSym(const int track, const Fraction tick, HarmonyMap& harmonyMap);
450450
bool isLikelyFingering(const QString& fingeringStr) const;
451451
bool isLikelyCredit(const Fraction& tick) const;

0 commit comments

Comments
 (0)