MCPcopy Create free account
hub / github.com/LMMS/lmms / name

Method name

src/core/AutomationPattern.cpp:623–639  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

621
622
623const QString AutomationPattern::name() const
624{
625 if( !TrackContentObject::name().isEmpty() )
626 {
627 return TrackContentObject::name();
628 }
629 if( !m_objects.isEmpty() && m_objects.first() != NULL )
630 {
631 return m_objects.first()->fullDisplayName();
632 }
633 return tr( "Drag a control while pressing <%1>" ).arg(
634 #ifdef LMMS_BUILD_APPLE
635 "⌘");
636 #else
637 "Ctrl");
638 #endif
639}
640
641
642

Callers

nothing calls this directly

Calls 3

firstMethod · 0.80
isEmptyMethod · 0.45
fullDisplayNameMethod · 0.45

Tested by

no test coverage detected