If I add this line to ~/JUCE/JUCE-master/modules/juce_gui_basics/application/juce_Application.cpp
bool JUCEApplication::perform (const InvocationInfo& info)
{
printf( "foo" );
if (info.commandID == StandardApplicationCommandIDs::quit)
{
systemRequestedQuit();
return true;
}
return false;
}
I would expect to see "foo" printed to the console when I quit the demo.
But I don't.
Why is this?
