From 8a03182c970759b257f11d964ba9ae846ac5f46b Mon Sep 17 00:00:00 2001 From: falkTX Date: Fri, 31 Mar 2023 22:53:42 +0200 Subject: [PATCH] Comment out unimplemented clap file loader Signed-off-by: falkTX --- distrho/src/DistrhoPluginCLAP.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/distrho/src/DistrhoPluginCLAP.cpp b/distrho/src/DistrhoPluginCLAP.cpp index d7c43062..29a0316d 100644 --- a/distrho/src/DistrhoPluginCLAP.cpp +++ b/distrho/src/DistrhoPluginCLAP.cpp @@ -578,7 +578,7 @@ private: setStateCallback, sendNoteCallback, setSizeCallback, - fileRequestCallback, + nullptr, // TODO fileRequestCallback, d_nextBundlePath, fPlugin.getInstancePointer(), fScaleFactor); @@ -708,6 +708,7 @@ private: } #endif + /* TODO bool fileRequest(const char*) { return true; @@ -717,6 +718,7 @@ private: { return static_cast(ptr)->fileRequest(key); } + */ }; // --------------------------------------------------------------------------------------------------------------------