Skip to content

Commit

Permalink
fix #118341
Browse files Browse the repository at this point in the history
  • Loading branch information
wschweer committed Aug 4, 2016
1 parent 3db32df commit 19cabce
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions libmscore/style.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -544,20 +544,22 @@ void MStyle::setChordList(ChordList* cl, bool custom)

MStyle::MStyle(const MStyle& s)
{
_values = s._values;
_chordList = s._chordList;
_textStyles = s._textStyles;
_values = s._values;
_precomputedValues = s._precomputedValues;
_chordList = s._chordList;
_textStyles = s._textStyles;
_pageFormat.copy(s._pageFormat);
_customChordList = s._customChordList;
_customChordList = s._customChordList;
}

MStyle& MStyle::operator=(const MStyle& s)
{
_values = s._values;
_chordList = s._chordList;
_textStyles = s._textStyles;
_values = s._values;
_precomputedValues = s._precomputedValues;
_chordList = s._chordList;
_textStyles = s._textStyles;
_pageFormat.copy(s._pageFormat);
_customChordList = s._customChordList;
_customChordList = s._customChordList;
return *this;
}

Expand Down

0 comments on commit 19cabce

Please sign in to comment.