TDraw fixed to support PolyPolyPolygons in Drawings; added build mode without PostgreSQL to SqlCommander

git-svn-id: svn://ultimatepp.org/upp/trunk@1729 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
rylek 2009-11-30 21:18:44 +00:00
parent 827cfb5926
commit 2e883dd506
2 changed files with 8 additions and 13 deletions

View file

@ -20,5 +20,6 @@ file
mainconfig
"" = ".NOMYSQL GUI .NOAPPSQL",
"" = "GUI MT .NOAPPSQL";
"" = "GUI MT .NOAPPSQL",
"" = ".NOMYSQL GUI .NOAPPSQL .NOPOSTGRESQL";

View file

@ -911,20 +911,14 @@ void DrawPolyPolyPolygon(Draw& draw, const Point *vertices, int vertex_count,
// NEVER();
#endif
#if 0
if(draw.IsDrawing())
{
// TIMING("DrawPolyPolygon/stream");
Vector<Point> out_vertices;
Vector<int> out_subpolygon_counts, out_polygon_counts;
/* StreamPolyPolyPolygon(draw.DrawingOp(wPolyPolyPolygon),
out_vertices, vertices, vertex_count,
out_subpolygon_counts, subpolygon_counts, subpolygon_count_count,
out_polygon_counts, disjunct_polygon_counts, disjunct_polygon_count_count,
if(!dynamic_cast<SystemDraw *>(&draw)) {
draw.DrawPolyPolyPolygon(vertices, vertex_count,
subpolygon_counts, subpolygon_count_count,
disjunct_polygon_counts, disjunct_polygon_count_count,
color, width, outline, pattern, doxor);
*/ return;
return;
}
#endif
// TIMING("DrawPolyPolygon/hdc");
bool is_xor = !IsNull(doxor);