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; return false;
} }


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


// rename on client client mode, just rename the ports // rename on client client mode, just rename the ports
if (pData->options.processMode == ENGINE_PROCESS_MODE_SINGLE_CLIENT) 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 #endif


#if defined(HAVE_LIBLO) && !defined(BUILD_BRIDGE) #if defined(HAVE_LIBLO) && !defined(BUILD_BRIDGE)
if (kIsPlugin)
if (fIsPlugin)
engineOsc.idle(); engineOsc.idle();
#endif #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: public:
explicit PluginApplication() explicit PluginApplication()
@@ -37,7 +37,7 @@ public:
} }
}; };


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


END_NAMESPACE_DISTRHO

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

START_NAMESPACE_DGL

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


Loading…
Cancel
Save