From fce4212ef552a9ff94f52c038436a30f10315d2d Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Wed, 11 Mar 2020 18:00:07 +0000 Subject: [PATCH] Replaced some old macros --- extras/AudioPluginHost/Source/UI/PluginWindow.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extras/AudioPluginHost/Source/UI/PluginWindow.h b/extras/AudioPluginHost/Source/UI/PluginWindow.h index a84bae1412..a4e69d2ff7 100644 --- a/extras/AudioPluginHost/Source/UI/PluginWindow.h +++ b/extras/AudioPluginHost/Source/UI/PluginWindow.h @@ -111,8 +111,8 @@ private: list.scrollToEnsureRowIsOnscreen (log.size() - 1); } - JUCE_CONSTEXPR static const int maxLogSize = 300; - JUCE_CONSTEXPR static const int logSizeTrimThreshold = 400; + constexpr static const int maxLogSize = 300; + constexpr static const int logSizeTrimThreshold = 400; ListBox list { "Log", this };