void TextStyleDialog::applyToAllParts() { saveStyle(current); // update local copy of style list QList<Excerpt*>& el = cs->masterScore()->excerpts(); for (Excerpt* e : el) applyToScore(e->partScore()); }
void PageSettings::applyToAllParts() { QList<Excerpt*>& el = cs->rootScore()->excerpts(); for (Excerpt* e : el) applyToScore(e->score()); mscore->endCmd(); }
void TextStyleDialog::apply() { saveStyle(current); // update local copy of style list applyToScore(cs); }
void PageSettings::apply() { applyToScore(cs); mscore->endCmd(); }