1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-08 04:20:09 +00:00

Minor clean-ups. Jucer development.

This commit is contained in:
Julian Storer 2010-04-27 19:19:18 +01:00
parent 10f53a1cb4
commit 5093ecbc84
113 changed files with 1181 additions and 637 deletions

View file

@ -27,7 +27,6 @@
BEGIN_JUCE_NAMESPACE
#include "juce_DrawableText.h"
@ -86,7 +85,7 @@ Drawable* DrawableText::createCopy() const
}
//==============================================================================
ValueTree DrawableText::createValueTree() const throw()
ValueTree DrawableText::createValueTree() const
{
ValueTree v ("Text");
@ -97,7 +96,7 @@ ValueTree DrawableText::createValueTree() const throw()
return v;
}
DrawableText* DrawableText::createFromValueTree (const ValueTree& tree) throw()
DrawableText* DrawableText::createFromValueTree (const ValueTree& tree)
{
if (! tree.hasType ("Text"))
return 0;