From cd060fba248d3bf1e1c6151e147dfa8df92c635f Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Mon, 5 Jul 2021 01:16:54 +0200 Subject: [PATCH] Remove comment about host context interfaces As it turns out, later SDK versions did add more interface. (this class used to directly implement `IHostApplication`) --- src/wine-host/bridges/vst3-impls/host-context-proxy.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/wine-host/bridges/vst3-impls/host-context-proxy.cpp b/src/wine-host/bridges/vst3-impls/host-context-proxy.cpp index 85761e18..7dcb625c 100644 --- a/src/wine-host/bridges/vst3-impls/host-context-proxy.cpp +++ b/src/wine-host/bridges/vst3-impls/host-context-proxy.cpp @@ -32,8 +32,6 @@ Vst3HostContextProxyImpl::Vst3HostContextProxyImpl( tresult PLUGIN_API Vst3HostContextProxyImpl::queryInterface(const Steinberg::TUID _iid, void** obj) { - // I don't think it's expected of a host to implement multiple interfaces on - // this object, so if we do get a call here it's important that it's logged const tresult result = Vst3HostContextProxy::queryInterface(_iid, obj); bridge.logger.log_query_interface("In FUnknown::queryInterface()", result, Steinberg::FUID::fromTUID(_iid));