1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-24 01:54:22 +00:00

Fix for RTAS compile error.

This commit is contained in:
jules 2012-07-09 13:46:08 +01:00
parent 6f28207e87
commit 70024eae19

View file

@ -353,7 +353,7 @@ public:
~EditorCompWrapper()
{
removeChildComponent (editorComp);
removeChildComponent (getEditor());
#if JUCE_WINDOWS && ! JucePlugin_EditorRequiresKeyboardFocus
Desktop::getInstance().removeFocusChangeListener (this);
@ -364,16 +364,14 @@ public:
#endif
}
void paint (Graphics&)
{
}
void paint (Graphics&) {}
void resized()
{
juce::Component* const c = getChildComponent (0);
juce::Component* const ed = getEditor();
if (c != nullptr)
c->setBounds (0, 0, getWidth(), getHeight());
if (ed != nullptr)
ed->setBounds (getLocalBounds());
repaint();
}
@ -399,9 +397,7 @@ public:
owner->updateSize();
}
void userTriedToCloseWindow()
{
}
void userTriedToCloseWindow() {}
#if JUCE_MAC && JucePlugin_EditorRequiresKeyboardFocus
bool keyPressed (const KeyPress& kp)
@ -419,6 +415,8 @@ public:
JuceCustomUIView* const owner;
int titleW, titleH;
Component* getEditor() const { return getChildComponent (0); }
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (EditorCompWrapper);
};
};