[mapguide-commits] r5125 - trunk/Tools/Maestro/Maestro/ResourceEditors

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Wed Sep 8 10:04:14 EDT 2010


Author: jng
Date: 2010-09-08 14:04:14 +0000 (Wed, 08 Sep 2010)
New Revision: 5125

Modified:
   trunk/Tools/Maestro/Maestro/ResourceEditors/ThemeCreator.cs
Log:
Possible fix for #1417. Can't verify without access to the data referenced in the ticket

Modified: trunk/Tools/Maestro/Maestro/ResourceEditors/ThemeCreator.cs
===================================================================
--- trunk/Tools/Maestro/Maestro/ResourceEditors/ThemeCreator.cs	2010-09-08 13:59:53 UTC (rev 5124)
+++ trunk/Tools/Maestro/Maestro/ResourceEditors/ThemeCreator.cs	2010-09-08 14:04:14 UTC (rev 5125)
@@ -199,7 +199,7 @@
                     retry = false;
                     try
                     {
-                        using (MaestroAPI.FeatureSetReader rd = m_editor.CurrentConnection.QueryFeatureSource(m_layer.Item.ResourceId, m_schema.Fullname, filter, new string[] { col.Name }))
+                        using (MaestroAPI.FeatureSetReader rd = m_editor.CurrentConnection.QueryFeatureSource(m_layer.Item.ResourceId, m_schema.FullnameDecoded, filter, new string[] { col.Name }))
                             while (rd.Read() && m_values.Count < 100000) //No more than 100.000 records in memory
                                 if (!rd.Row.IsValueNull(col.Name))
                                 {



More information about the mapguide-commits mailing list