Explorar o código

* Fix 0037544: overload writing refinement

git-svn-id: trunk@46367 -
michael %!s(int64=5) %!d(string=hai) anos
pai
achega
40b59dd3cd
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      packages/fcl-passrc/src/paswrite.pp

+ 3 - 1
packages/fcl-passrc/src/paswrite.pp

@@ -923,7 +923,9 @@ begin
   // delphi compatible order for example: procedure foo; reintroduce; overload; static;
   if not IsImpl and AProc.IsReintroduced then
     Add(' reintroduce;');
-  if AProc.IsOverload and (Not FInImplementation) then
+  // if NamePrefix is not empty, we're writing a dummy for external class methods.
+  // In that case, we must not write the 'overload'.
+  if AProc.IsOverload and (NamePrefix='') then
     Add(' overload;');
   if not IsImpl then
     begin