From ec457ac69bfe91ec8430d1389fc88af0548b4449 Mon Sep 17 00:00:00 2001 From: grindhold Date: Mon, 10 Nov 2014 10:45:38 +0100 Subject: [PATCH] fixed argument being passed into errormessage of vsteffect --- plugins/VstEffect/VstEffect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/VstEffect/VstEffect.cpp b/plugins/VstEffect/VstEffect.cpp index d17ae07d2..614c44584 100644 --- a/plugins/VstEffect/VstEffect.cpp +++ b/plugins/VstEffect/VstEffect.cpp @@ -135,7 +135,7 @@ void VstEffect::openPlugin( const QString & _plugin ) m_pluginMutex.unlock(); closePlugin(); delete tf; - logError( VstPlugin::tr( "The VST plugin %1 could not be loaded." ) ); + logError( VstPlugin::tr( "The VST plugin %1 could not be loaded." ).arg( _plugin ) ); return; }