Skip to content

Commit 12d9ef7

Browse files
committed
fix build with Qt 6.10.1
Fixes #1098
1 parent 240813f commit 12d9ef7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/statemachineviewer/qscxmlstatemachinedebuginterface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ QString QScxmlStateMachineDebugInterface::transitionLabel(Transition transition)
212212
return QString();
213213
}
214214

215-
return QStringLiteral("%1 (%2)").arg(events.first()).arg(transition);
215+
return QStringLiteral("%1 (%2)").arg(events.first()).arg(transition.m_id);
216216
}
217217

218218
State QScxmlStateMachineDebugInterface::transitionSource(Transition transition) const

0 commit comments

Comments
 (0)