1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Introjucer: tweaked the GUI editor to add 'override' after its auto-generated methods

This commit is contained in:
jules 2016-01-03 16:53:52 +00:00
parent 7da76f2a11
commit bc6ecafaf0

View file

@ -118,7 +118,7 @@ String GeneratedCode::getCallbackDeclarations() const
{
CallbackMethod* const cm = callbacks.getUnchecked(i);
s << cm->returnType << " " << cm->prototype << ";\n";
s << cm->returnType << " " << cm->prototype << " override;\n";
}
return s;