Browse Source

Fix build

pull/6/head
falkTX 10 years ago
parent
commit
37783ee192
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      distrho/src/DistrhoUIInternal.hpp

+ 4
- 4
distrho/src/DistrhoUIInternal.hpp View File

@@ -18,10 +18,10 @@
#define DISTRHO_UI_INTERNAL_HPP_INCLUDED #define DISTRHO_UI_INTERNAL_HPP_INCLUDED


#include "../DistrhoUI.hpp" #include "../DistrhoUI.hpp"
#include "../../dgl/App.hpp"
#include "../../dgl/Application.hpp"
#include "../../dgl/Window.hpp" #include "../../dgl/Window.hpp"


using DGL::App;
using DGL::Application;
using DGL::IdleCallback; using DGL::IdleCallback;
using DGL::Window; using DGL::Window;


@@ -142,7 +142,7 @@ UI* createUiWrapper(void* const dspPtr, Window* const window)
class UIExporterWindow : public Window class UIExporterWindow : public Window
{ {
public: public:
UIExporterWindow(App& app, const intptr_t winId, void* const dspPtr)
UIExporterWindow(Application& app, const intptr_t winId, void* const dspPtr)
: Window(app, winId), : Window(app, winId),
fUI(createUiWrapper(dspPtr, this)), fUI(createUiWrapper(dspPtr, this)),
fIsReady(false) fIsReady(false)
@@ -371,7 +371,7 @@ private:
// ------------------------------------------------------------------- // -------------------------------------------------------------------
// DGL Application and Window for this widget // DGL Application and Window for this widget


App glApp;
Application glApp;
UIExporterWindow glWindow; UIExporterWindow glWindow;


// prevent recursion // prevent recursion


Loading…
Cancel
Save