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

Method getMaker

src/core/LadspaManager.cpp:351–366  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

349
350
351QString LadspaManager::getMaker( const ladspa_key_t & _plugin )
352{
353 if( m_ladspaManagerMap.contains( _plugin ) )
354 {
355 LADSPA_Descriptor_Function descriptorFunction =
356 m_ladspaManagerMap[_plugin]->descriptorFunction;
357 const LADSPA_Descriptor * descriptor =
358 descriptorFunction(
359 m_ladspaManagerMap[_plugin]->index );
360 return( QString( descriptor->Maker ) );
361 }
362 else
363 {
364 return( QString( "" ) );
365 }
366}
367
368
369

Callers 2

fillDescriptionWidgetMethod · 0.80
updateMethod · 0.80

Calls 1

QStringClass · 0.50

Tested by

no test coverage detected