1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-25 02:04:23 +00:00

Code clean-ups. Jucer development.

This commit is contained in:
Julian Storer 2010-05-12 23:42:49 +01:00
parent 22e02cf791
commit 1751beed57
145 changed files with 2247 additions and 1853 deletions

View file

@ -392,7 +392,7 @@ void ResizableWindow::setFullScreen (const bool shouldBeFullScreen)
}
else
{
jassertfalse
jassertfalse;
}
}
else
@ -427,7 +427,7 @@ void ResizableWindow::setMinimised (const bool shouldMinimise)
}
else
{
jassertfalse
jassertfalse;
}
}
}
@ -533,7 +533,7 @@ void ResizableWindow::addChildComponent (Component* const child, int zOrder)
If you really know what you're doing and want to avoid this assertion, just call
Component::addChildComponent directly.
*/
jassertfalse
jassertfalse;
Component::addChildComponent (child, zOrder);
}
@ -550,7 +550,7 @@ void ResizableWindow::addAndMakeVisible (Component* const child, int zOrder)
If you really know what you're doing and want to avoid this assertion, just call
Component::addAndMakeVisible directly.
*/
jassertfalse
jassertfalse;
Component::addAndMakeVisible (child, zOrder);
}