Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

To whom do I report a typo in _GDIPLUS.VCX?

Status
Not open for further replies.

dbMark

Programmer
Apr 10, 2003
1,515
US
In _GDIPLUS.VCX/VCT, object gpbase, procedure ObjFactory:
Code:
* [URL unfurl="true"]https://vfpx.svn.codeplex.com/svn/VFP9/Ffc/_gdiplus.vca[/URL]
PROCEDURE objfactory
lparameters tcContext, tcClassName ;
	, p1,p2,p3,p4,p5,p6,p7,p8,p9,p10
* * *
case pcount()==8
 return newobject(m.tcClassName,m.lcClassLibrary,m.lcModule,@p1,@p,@p3,@p4,@p5,@p6)
The parameter @p should be @p2. If anyone tried using this section of the code with exactly 6 passed parameters, it would error if a variable/field "p" did not exist or perform unreliably.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top