1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-20 01:14:20 +00:00

Got rid of some methods which had inexplicably ended up marked both 'virtual' and 'override'.

This commit is contained in:
jules 2019-01-18 09:09:06 +00:00
parent cdb55f70c2
commit da2b10ada6
19 changed files with 47 additions and 48 deletions

View file

@ -118,7 +118,7 @@ Colour JucerTreeViewBase::getContentColour (bool isIcon) const
return getOwnerView()->findColour (isIcon ? treeIconColourId : defaultTextColourId);
}
void JucerTreeViewBase::paintContent (Graphics& g, const Rectangle<int>& area)
void JucerTreeViewBase::paintContent (Graphics& g, Rectangle<int> area)
{
g.setFont (getFont());
g.setColour (getContentColour (false));