More wxMotif work, OGL enhancements, USE_ macro corrections, object.cpp delete
operator correction for VC++ 6 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@780 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
		| @@ -1219,7 +1219,7 @@ bool wxOpPolyDraw::GetPerimeterPoint(double x1, double y1, | ||||
|                                      double x2, double y2, | ||||
|                                      double *x3, double *y3, | ||||
|                                      double xOffset, double yOffset, | ||||
|                                      bool attachmentMode) | ||||
|                                      int attachmentMode) | ||||
| { | ||||
|   int n = m_noPoints; | ||||
|  | ||||
| @@ -1227,7 +1227,7 @@ bool wxOpPolyDraw::GetPerimeterPoint(double x1, double y1, | ||||
|   // and we would want to connect to a point on that vertical -- | ||||
|   // oglFindEndForPolyline can't cope with this (the arrow | ||||
|   // gets drawn to the wrong place). | ||||
|   if ((!attachmentMode) && (x1 == x2)) | ||||
|   if ((attachmentMode == ATTACHMENT_MODE_NONE) && (x1 == x2)) | ||||
|   { | ||||
|     // Look for the point we'd be connecting to. This is | ||||
|     // a heuristic... | ||||
|   | ||||
		Reference in New Issue
	
	Block a user