Skip to content

Commit

Permalink
fix #243201: commands not active
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcSabatella committed Aug 8, 2017
1 parent f8340e1 commit 0ebcf16
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 0ebcf16

Please sign in to comment.