"Peter" wrote in message news:xn0hn34r...@news.online.de...
Ok thanks for the tip:
This worked:
function ToString( ParaFilename : string; ParaGenerations : int64 ) :
string; reintroduce; virtual;
This however did not work:
function ToString( ParaFilename : string; ParaGenerations : int64 ) :
string; virtual; reintroduce;
The first one seems to make somewhat more sense, it seems to tell the
compiler: "it's ok to override behaviour or subplant it, and then it's ok to
make it virtual..."
While the second would probably mean something else ;)
Bye,
Skybuck.