1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00
This commit is contained in:
jules 2007-07-18 13:33:22 +00:00
parent 03f66fe310
commit 65d2751d23

View file

@ -244,7 +244,7 @@ public:
{
PopupMenu::dismissAllActiveMenus();
Component* const modalComponent = Component::getCurrentlyModalComponent();
juce::Component* const modalComponent = juce::Component::getCurrentlyModalComponent();
if (modalComponent != 0)
modalComponent->exitModalState (0);
@ -375,7 +375,7 @@ public:
void resized()
{
Component* const c = getChildComponent (0);
juce::Component* const c = getChildComponent (0);
if (c != 0)
c->setBounds (0, 0, getWidth(), getHeight());
@ -407,7 +407,7 @@ public:
#endif
#if JUCE_WIN32
void globalFocusChanged (Component*)
void globalFocusChanged (juce::Component*)
{
#if ! JucePlugin_EditorRequiresKeyboardFocus
if (hasKeyboardFocus (true))
@ -416,7 +416,7 @@ public:
}
#endif
void childBoundsChanged (Component* child)
void childBoundsChanged (juce::Component* child)
{
setSize (child->getWidth(), child->getHeight());
child->setTopLeftPosition (0, 0);