| 621 | |
| 622 | |
| 623 | const 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 |
nothing calls this directly
no test coverage detected