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

AU path fix. Minor tweaks. Version number bump.

This commit is contained in:
Julian Storer 2011-09-23 15:36:04 +01:00
parent b114339c3f
commit 52a90374df
26 changed files with 49 additions and 37 deletions

View file

@ -38,7 +38,7 @@ namespace FontValues
}
typedef Typeface::Ptr (*GetTypefaceForFont) (const Font&);
GetTypefaceForFont juce_getTypefaceForFont = 0;
GetTypefaceForFont juce_getTypefaceForFont = nullptr;
//==============================================================================
class TypefaceCache : public DeletedAtShutdown
@ -101,7 +101,7 @@ public:
face.flags = flags;
face.lastUsageCount = ++counter;
if (juce_getTypefaceForFont == 0)
if (juce_getTypefaceForFont == nullptr)
face.typeface = Font::getDefaultTypefaceForFont (font);
else
face.typeface = juce_getTypefaceForFont (font);

View file

@ -1,7 +1,7 @@
{
"id": "juce_graphics",
"name": "JUCE graphics classes",
"version": "2.0.5",
"version": "2.0.6",
"description": "Classes for 2D vector graphics, image loading/saving, font handling, etc.",
"website": "http://www.juce.com/juce",
"license": "GPL/Commercial",