Skip to content

Commit

Permalink
Merge pull request #3268 from MarcSabatella/243201-no-commands
Browse files Browse the repository at this point in the history
fix #243201: commands not active
  • Loading branch information
lasconic committed Aug 10, 2017
2 parents d002042 + 0ebcf16 commit 0250fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mscore/scoreview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1674,7 +1674,7 @@ void ScoreView::ticksTab(int ticks)

void ScoreView::cmd(const QAction* a)
{
const char* s = a ? a->data().toByteArray().data() : "";
const char* s = a ? a->data().toByteArray().constData() : "";
cmd(s);
}

Expand Down

0 comments on commit 0250fc9

Please sign in to comment.