DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 37783ee192766e38a54c64641a442ab8a52e9d1a
parent db4c38c4eba98be6250290dd4fb6e77cf901155d
Author: falkTX <falktx@gmail.com>
Date:   Tue,  5 May 2015 14:23:24 +0200

Fix build

Diffstat:
Mdistrho/src/DistrhoUIInternal.hpp | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/distrho/src/DistrhoUIInternal.hpp b/distrho/src/DistrhoUIInternal.hpp @@ -18,10 +18,10 @@ #define DISTRHO_UI_INTERNAL_HPP_INCLUDED #include "../DistrhoUI.hpp" -#include "../../dgl/App.hpp" +#include "../../dgl/Application.hpp" #include "../../dgl/Window.hpp" -using DGL::App; +using DGL::Application; using DGL::IdleCallback; using DGL::Window; @@ -142,7 +142,7 @@ UI* createUiWrapper(void* const dspPtr, Window* const window) class UIExporterWindow : public Window { public: - UIExporterWindow(App& app, const intptr_t winId, void* const dspPtr) + UIExporterWindow(Application& app, const intptr_t winId, void* const dspPtr) : Window(app, winId), fUI(createUiWrapper(dspPtr, this)), fIsReady(false) @@ -371,7 +371,7 @@ private: // ------------------------------------------------------------------- // DGL Application and Window for this widget - App glApp; + Application glApp; UIExporterWindow glWindow; // prevent recursion