ide/CodeEditor: Fixed overriding of virtual methods
authorJerome St-Louis <jerome@ecere.com>
Sun, 27 Jan 2013 04:22:02 +0000 (23:22 -0500)
committerJerome St-Louis <jerome@ecere.com>
Sun, 27 Jan 2013 04:22:02 +0000 (23:22 -0500)
commit636795a9c5baadf38c2da7c44ae22041afb48597
treedd7d9312b6bb501589610c64d9b1558be1dc9280
parent3ec7cd9886182973f688afd893283edb3b6da922
ide/CodeEditor: Fixed overriding of virtual methods
- The IDE would assume methods need to be chained for virtual methods defined within current module. Now assuming they don't.
- Overriding OnRedraw in a Window or Main in a Thread instance would chain to Window::OnRedraw() / Thread::Main() even though that is not required
- Note: It is not possible at this point to know whether the method should be chained or not for the current module (not compiled)
compiler/libec/src/loadSymbols.ec
ide/src/designer/CodeEditor.ec