Browse Source

Fix no namespace build

Signed-off-by: falkTX <falktx@falktx.com>
pull/338/head
falkTX 4 years ago
parent
commit
8a4e6258c2
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      distrho/src/DistrhoUIInternal.hpp

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

@@ -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


Loading…
Cancel
Save