Information about constructor Lyrics(const Lyrics& l)
Hi !
I would like to get a better understanding about :
QList _separator;
foreach(Line* l, l._separator)
_separator.append(new Line(*l));
Many thanks !
Hi !
I would like to get a better understanding about :
QList _separator;
foreach(Line* l, l._separator)
_separator.append(new Line(*l));
Many thanks !
Do you still have an unanswered question? Please log in first to post your question.
Comments
Sorry for the late reply. This kind of question is probably more suitable for the developer mailing list or the IRC channel (#musescore on freenode.net)
Regarding the lines you quote, you probably found a bug (?). The _separator list should be the one from the instance and not a new one. Is that what you mean?