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

Added versions of Component::addAndMakeVisible and addChildComponent which take a reference instead of a pointer.

This commit is contained in:
jules 2013-12-23 15:16:38 +00:00
parent 9aeefa5ebe
commit 4d79bed3d1
82 changed files with 305 additions and 272 deletions

View file

@ -403,11 +403,11 @@ KeyMappingEditorComponent::KeyMappingEditorComponent (KeyPressMappingSet& mappin
if (showResetToDefaultButton)
{
addAndMakeVisible (&resetButton);
addAndMakeVisible (resetButton);
resetButton.addListener (treeItem);
}
addAndMakeVisible (&tree);
addAndMakeVisible (tree);
tree.setColour (TreeView::backgroundColourId, findColour (backgroundColourId));
tree.setRootItemVisible (false);
tree.setDefaultOpenness (true);