fix warning on macosx
This commit is contained in:
parent
4a235fb238
commit
e0bedae6c2
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ QPointF BarLine::pagePos() const
|
|||
if (system) {
|
||||
// get first not hidden staff
|
||||
int startIdx = staffIdx();
|
||||
int endIdx = startIdx + spanStaff() ? 1 : 0;
|
||||
int endIdx = startIdx + (spanStaff() ? 1 : 0);
|
||||
int staffIdx1 = startIdx;
|
||||
Staff* staff1 = score()->staff(staffIdx1);
|
||||
SysStaff* sysStaff1 = system->staff(staffIdx1);
|
||||
|
|
Loading…
Reference in a new issue