| 167 | |
| 168 | |
| 169 | const AutomatableModel * AutomationPattern::firstObject() const |
| 170 | { |
| 171 | AutomatableModel * m; |
| 172 | if( !m_objects.isEmpty() && ( m = m_objects.first() ) != NULL ) |
| 173 | { |
| 174 | return m; |
| 175 | } |
| 176 | |
| 177 | static FloatModel _fm( 0, DEFAULT_MIN_VALUE, DEFAULT_MAX_VALUE, 0.001 ); |
| 178 | return &_fm; |
| 179 | } |
| 180 | |
| 181 | const AutomationPattern::objectVector& AutomationPattern::objects() const |
| 182 | { |
no test coverage detected