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:
parent
ffaa06c3d0
commit
aff5fea6b4
11 changed files with 41 additions and 33 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
//==============================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue