Browse Source

Fix strict build

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.3.1
falkTX 3 years ago
parent
commit
fe3a04456a
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/utils/CarlaPluginUI.cpp

+ 1
- 1
source/utils/CarlaPluginUI.cpp View File

@@ -326,7 +326,7 @@ public:
if (XGetNormalHints(fDisplay, fChildWindow, &sizeHints)) if (XGetNormalHints(fDisplay, fChildWindow, &sizeHints))
XSetNormalHints(fDisplay, fHostWindow, &sizeHints); XSetNormalHints(fDisplay, fHostWindow, &sizeHints);


XResizeWindow(fDisplay, fHostWindow, nextWidth, nextHeight);
XResizeWindow(fDisplay, fHostWindow, static_cast<uint>(nextWidth), static_cast<uint>(nextHeight));
XFlush(fDisplay); XFlush(fDisplay);
} }




Loading…
Cancel
Save