From 083a1a0c91a7f7bc627909259d45a65419c05846 Mon Sep 17 00:00:00 2001 From: falkTX Date: Sun, 14 May 2023 22:04:44 +0200 Subject: [PATCH] Fix non-linux build Signed-off-by: falkTX --- source/utils/CarlaPluginUI.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/source/utils/CarlaPluginUI.cpp b/source/utils/CarlaPluginUI.cpp index 56e63b3fe..bddb2c8e5 100644 --- a/source/utils/CarlaPluginUI.cpp +++ b/source/utils/CarlaPluginUI.cpp @@ -796,6 +796,11 @@ public: [NSApp activateIgnoringOtherApps:YES]; } + void setMinimumSize(uint, uint) override + { + // TODO + } + void setSize(const uint width, const uint height, const bool forceUpdate, const bool resizeChild) override { carla_debug("CocoaPluginUI::setSize(%u, %u, %s)", width, height, bool2str(forceUpdate)); @@ -1107,6 +1112,11 @@ public: SetFocus(fWindow); } + void setMinimumSize(uint, uint) override + { + // TODO + } + void setSize(const uint width, const uint height, const bool forceUpdate, bool) override { CARLA_SAFE_ASSERT_RETURN(fWindow != nullptr,);