[mapserver-commits] r7526 - branches/branch-5-0/mapserver
svn at osgeo.org
svn at osgeo.org
Mon Apr 21 04:31:49 EDT 2008
Author: tbonfort
Date: 2008-04-21 04:31:48 -0400 (Mon, 21 Apr 2008)
New Revision: 7526
Modified:
branches/branch-5-0/mapserver/HISTORY.TXT
branches/branch-5-0/mapserver/mapagg.cpp
Log:
Fix rendering of non filled vector symbols (#2585)
Modified: branches/branch-5-0/mapserver/HISTORY.TXT
===================================================================
--- branches/branch-5-0/mapserver/HISTORY.TXT 2008-04-17 17:41:17 UTC (rev 7525)
+++ branches/branch-5-0/mapserver/HISTORY.TXT 2008-04-21 08:31:48 UTC (rev 7526)
@@ -13,6 +13,8 @@
Current Version (future 5.0.3, svn branch-5-0)
----------------------------------------------
+- mapagg.cpp: Fixed rendering of non filled vector symbols (#2585)
+
- Fixed handling of encrypted connection strings in postgis driver (#2563)
- Fixed problem with large imagemaps generating no output (#2526)
Modified: branches/branch-5-0/mapserver/mapagg.cpp
===================================================================
--- branches/branch-5-0/mapserver/mapagg.cpp 2008-04-17 17:41:17 UTC (rev 7525)
+++ branches/branch-5-0/mapserver/mapagg.cpp 2008-04-21 08:31:48 UTC (rev 7526)
@@ -1178,7 +1178,7 @@
else
return;
//draw only the outline
- ren->renderPathSolid(path,&(style->color),&(style->outlinecolor),width);
+ ren->renderPathSolid(path,NULL,c,width);
}
}
break;
@@ -1305,7 +1305,7 @@
else
return;
//draw only the outline
- ren->renderPathSolid(rotsym,&(style->color),&(style->outlinecolor),outlinewidth);
+ ren->renderPathSolid(rotsym,NULL,c,outlinewidth);
}
}
break;
More information about the mapserver-commits
mailing list