diff --git a/src/wine-host/bridges/vst3-impls.cpp b/src/wine-host/bridges/vst3-impls.cpp index b169063e..d52d8cc6 100644 --- a/src/wine-host/bridges/vst3-impls.cpp +++ b/src/wine-host/bridges/vst3-impls.cpp @@ -24,10 +24,12 @@ tresult PLUGIN_API YaPluginFactoryHostImpl::createInstance(Steinberg::FIDString /*cid*/, Steinberg::FIDString /*_iid*/, void** /*obj*/) { - throw std::runtime_error("Unexpected call to 'createInstance()'"); + throw std::runtime_error( + "Unexpected call to 'IPluginFactory::createInstance()'"); } tresult PLUGIN_API YaPluginFactoryHostImpl::setHostContext(Steinberg::FUnknown* /*context*/) { - throw std::runtime_error("Unexpected call to 'setHostContext()'"); + throw std::runtime_error( + "Unexpected call to 'IPluginFactory3::setHostContext()'"); }