1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-04 03:40:07 +00:00

Minor introjucer clean-ups.

This commit is contained in:
jules 2012-01-22 10:04:19 +00:00
parent ffaa06c3d0
commit aff5fea6b4
11 changed files with 41 additions and 33 deletions

View file

@ -37,7 +37,7 @@ JucerTreeViewBase::~JucerTreeViewBase()
{
}
const Font JucerTreeViewBase::getFont() const
Font JucerTreeViewBase::getFont() const
{
return Font (getItemHeight() * 0.6f);
}
@ -109,7 +109,7 @@ Component* JucerTreeViewBase::createItemComponent()
createLeftEdgeComponents (components);
numLeftHandComps = components.size();
return numLeftHandComps == 0 ? 0 : new TreeLeftHandButtonHolderComponent (components);
return numLeftHandComps == 0 ? nullptr : new TreeLeftHandButtonHolderComponent (components);
}
//==============================================================================