Browse Source

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

tags/2021-05-28
jules 9 years ago
parent
commit
bc6ecafaf0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Introjucer/Source/ComponentEditor/jucer_GeneratedCode.cpp

+ 1
- 1
extras/Introjucer/Source/ComponentEditor/jucer_GeneratedCode.cpp 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;


Loading…
Cancel
Save