Merge pull request #1046 from tresf/patch-2

Allow uppercase letters in ladspa file names
This commit is contained in:
Vesa V
2014-07-30 18:49:34 +03:00

View File

@@ -158,7 +158,7 @@ void LadspaSubPluginFeatures::listSubPluginKeys(
ladspa_key_t LadspaSubPluginFeatures::subPluginKeyToLadspaKey(
const Key * _key )
{
QString file = _key->attributes["file"].toLower();
QString file = _key->attributes["file"];
return( ladspa_key_t( file.remove( QRegExp( "\\.so$" ) ).
remove( QRegExp( "\\.dll$" ) ) +
#ifdef LMMS_BUILD_WIN32