I sent you a you small source unit to play with. What is weird about it is
that all the methods have been 100% uniformly documented. All but four methods
(well within the main source body) have decided NOT to document. I am moving
on with my project knowing this source has been properly documented. Thought I
just let ya know. =)
Before you ask,
I'm Using 0.24.0.930 and got the same with a early version. Not sure what
earlier version I was using as I just download the update and overwrote it.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
ok, I have analyzed the result and the source, and the issue is in your
code.
You have some (exactly 4) declaration methods that have a (slightly) different implementation.
Have a look:
procedureGetFTime(varF; var Time: Longint);procedureTConsoleBase_W32.GetFTime(varF; var Time: Integer);procedurePackTime(varT:DateTime; var P: Longint);procedureTConsoleBase_W32.PackTime(varT:DateTime; var P: Integer);procedureSetFTime(varF; Time: Longint);procedureTConsoleBase_W32.SetFTime(varF; Time: Integer);procedureUnpackTime(P:Longint; var T: DateTime);procedureTConsoleBase_W32.UnpackTime(P:Integer; var T: DateTime);
You have the Longint in declaration and integer in implementation.
Even if the two declaration holds a 32 bits integer (on Win32), there may be
difference on another target.
So you should correct you code source.
DelphiCodeToDoc try to find the same method signature, but failed for the
paramter types.
I hope this will help you, it fixes the document issue on my side.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi TridenT,
I sent you a you small source unit to play with. What is weird about it is
that all the methods have been 100% uniformly documented. All but four methods
(well within the main source body) have decided NOT to document. I am moving
on with my project knowing this source has been properly documented. Thought I
just let ya know. =)
Before you ask,
I'm Using 0.24.0.930 and got the same with a early version. Not sure what
earlier version I was using as I just download the update and overwrote it.
ok, I have analyzed the result and the source, and the issue is in your
code.
You have some (exactly 4) declaration methods that have a (slightly)
different implementation.
Have a look:
You have the Longint in declaration and integer in implementation.
Even if the two declaration holds a 32 bits integer (on Win32), there may be
difference on another target.
So you should correct you code source.
DelphiCodeToDoc try to find the same method signature, but failed for the
paramter types.
I hope this will help you, it fixes the document issue on my side.