DPF

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

commit 8a4e6258c20059507333fe2a5387195010f9bb63
parent 2b3bf6625624890a7c930c8aa6a785583871f1d7
Author: falkTX <falktx@falktx.com>
Date:   Wed,  6 Oct 2021 12:27:42 +0100

Fix no namespace build

Signed-off-by: falkTX <falktx@falktx.com>

Diffstat:
Mdistrho/src/DistrhoUIInternal.hpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/distrho/src/DistrhoUIInternal.hpp b/distrho/src/DistrhoUIInternal.hpp @@ -137,7 +137,7 @@ public: #if DISTRHO_PLUGIN_HAS_EXTERNAL_UI uiData->window->getGeometryConstraints(minimumWidth, minimumHeight, keepAspectRatio); #else - const Size<uint> size(uiData->window->getGeometryConstraints(keepAspectRatio)); + const DGL_NAMESPACE::Size<uint> size(uiData->window->getGeometryConstraints(keepAspectRatio)); minimumWidth = size.getWidth(); minimumHeight = size.getHeight(); #endif