commit 8a03182c970759b257f11d964ba9ae846ac5f46b
parent 1a3b6242230a914c28be5762657efbe08e96f7c6
Author: falkTX <falktx@falktx.com>
Date: Fri, 31 Mar 2023 22:53:15 +0200
Comment out unimplemented clap file loader
Signed-off-by: falkTX <falktx@falktx.com>
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git 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<ClapUI*>(ptr)->fileRequest(key);
}
+ */
};
// --------------------------------------------------------------------------------------------------------------------