Browse Source

Fix non-linux build

Signed-off-by: falkTX <falktx@falktx.com>
pull/1775/head
falkTX 1 year ago
parent
commit
083a1a0c91
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      source/utils/CarlaPluginUI.cpp

+ 10
- 0
source/utils/CarlaPluginUI.cpp View File

@@ -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,);


Loading…
Cancel
Save