From 8a4e6258c20059507333fe2a5387195010f9bb63 Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 6 Oct 2021 12:28:09 +0100 Subject: [PATCH] Fix no namespace build Signed-off-by: falkTX --- distrho/src/DistrhoUIInternal.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distrho/src/DistrhoUIInternal.hpp b/distrho/src/DistrhoUIInternal.hpp index af2764e8..c4e0004e 100644 --- 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 size(uiData->window->getGeometryConstraints(keepAspectRatio)); + const DGL_NAMESPACE::Size size(uiData->window->getGeometryConstraints(keepAspectRatio)); minimumWidth = size.getWidth(); minimumHeight = size.getHeight(); #endif