Browse Source

Fix build after latest changes

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.5.0
falkTX 2 years ago
parent
commit
ea914aaa41
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
3 changed files with 11 additions and 5 deletions
  1. +1
    -1
      source/backend/engine/CarlaEngineJack.cpp
  2. +1
    -1
      source/backend/engine/CarlaEngineRunner.cpp
  3. +9
    -3
      source/plugin/ui_launcher.cpp

+ 1
- 1
source/backend/engine/CarlaEngineJack.cpp View File

@@ -2170,7 +2170,7 @@ public:
return false;
}

const ScopedThreadStopper sts(this);
const ScopedRunnerStopper srs(this);

// rename on client client mode, just rename the ports
if (pData->options.processMode == ENGINE_PROCESS_MODE_SINGLE_CLIENT)


+ 1
- 1
source/backend/engine/CarlaEngineRunner.cpp View File

@@ -81,7 +81,7 @@ bool CarlaEngineRunner::run() noexcept
#endif

#if defined(HAVE_LIBLO) && !defined(BUILD_BRIDGE)
if (kIsPlugin)
if (fIsPlugin)
engineOsc.idle();
#endif



+ 9
- 3
source/plugin/ui_launcher.cpp View File

@@ -25,9 +25,9 @@

// --------------------------------------------------------------------------------------------------------------------

START_NAMESPACE_DGL
START_NAMESPACE_DISTRHO

class PluginApplication : public Application
class PluginApplication : public DGL_NAMESPACE::Application
{
public:
explicit PluginApplication()
@@ -37,7 +37,7 @@ public:
}
};

class PluginWindow : public Window
class PluginWindow : public DGL_NAMESPACE::Window
{
public:
explicit PluginWindow(PluginApplication& app, const uintptr_t winId)
@@ -69,6 +69,12 @@ public:
}
};

END_NAMESPACE_DISTRHO

// --------------------------------------------------------------------------------------------------------------------

START_NAMESPACE_DGL

class CarlaButtonWidget : public TopLevelWidget,
private OpenGLImageButton::Callback
{


Loading…
Cancel
Save