Re: [fpc-pascal] method renaming

2010-06-03 Thread Jonas Maebe
On 03 Jun 2010, at 23:01, spir wrote: > Is it possible to rename a method in a subclass (with or without overriding); > for instance because the new name makes more sense in the subclass? No, it is not. You can however obviously add a new method that calls the old one. Jonas_

[fpc-pascal] method renaming

2010-06-03 Thread spir
Hello, Is it possible to rename a method in a subclass (with or without overriding); for instance because the new name makes more sense in the subclass? In my case, the situation is a bit different: a single method splits into two methods in a subclass. One is equivalent to the inherited one, b