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

macOS: Fixed some Projucer live-build issues on Catalina

This commit is contained in:
Tom Poole 2020-02-04 09:15:59 +00:00
parent 631f1fae75
commit 0831c718a2
7 changed files with 9 additions and 592 deletions

View file

@ -103,7 +103,7 @@ struct CodeContent : public Component
//==============================================================================
DemoContentComponent::DemoContentComponent (Component& mainComponent, std::function<void(bool)> callback)
: TabbedComponent (TabbedButtonBar::Orientation::TabsAtTop),
demoChangedCallback (callback)
demoChangedCallback (std::move (callback))
{
demoContent.reset (new DemoContent());
addTab ("Demo", Colours::transparentBlack, demoContent.get(), false);