Browse Source

Add missing ifdefs from recent commit

tags/2021-05-28
hogliux 9 years ago
parent
commit
749bffed7a
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      modules/juce_gui_basics/native/juce_win32_Windowing.cpp

+ 6
- 1
modules/juce_gui_basics/native/juce_win32_Windowing.cpp View File

@@ -564,7 +564,10 @@ namespace IconConverters
}
//==============================================================================
class HWNDComponentPeer : public ComponentPeer, public ModifierKeyReceiver
class HWNDComponentPeer : public ComponentPeer
#if JUCE_MODULE_AVAILABLE_juce_audio_plugin_client
, public ModifierKeyReceiver
#endif
{
public:
enum RenderingEngineType
@@ -2420,6 +2423,7 @@ private:
}
//==============================================================================
#if JUCE_MODULE_AVAILABLE_juce_audio_plugin_client
void setModifierKeyProvider (ModifierKeyProvider* provider) override
{
modProvider = provider;
@@ -2429,6 +2433,7 @@ private:
{
modProvider = nullptr;
}
#endif
//==============================================================================
public:


Loading…
Cancel
Save