[mapguide-commits] r7354 - trunk/Tools/Maestro/Maestro.Editors/FeatureSource/Providers/Gdal

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Fri Feb 15 01:36:23 PST 2013


Author: jng
Date: 2013-02-15 01:36:22 -0800 (Fri, 15 Feb 2013)
New Revision: 7354

Modified:
   trunk/Tools/Maestro/Maestro.Editors/FeatureSource/Providers/Gdal/GdalProviderCtrl.cs
Log:
#2217: Left out localization markers

Modified: trunk/Tools/Maestro/Maestro.Editors/FeatureSource/Providers/Gdal/GdalProviderCtrl.cs
===================================================================
--- trunk/Tools/Maestro/Maestro.Editors/FeatureSource/Providers/Gdal/GdalProviderCtrl.cs	2013-02-15 09:26:50 UTC (rev 7353)
+++ trunk/Tools/Maestro/Maestro.Editors/FeatureSource/Providers/Gdal/GdalProviderCtrl.cs	2013-02-15 09:36:22 UTC (rev 7354)
@@ -60,17 +60,17 @@
                 _service = service;
                 _fs = (IFeatureSource)_service.GetEditedResource();
 
-                var provInfo = _service.FeatureService.GetFeatureProvider("OSGeo.Gdal");
+                var provInfo = _service.FeatureService.GetFeatureProvider("OSGeo.Gdal"); //NOXLATE
                 foreach (var prop in provInfo.ConnectionProperties)
                 {
-                    if (prop.Name == "ResamplingMethod")
+                    if (prop.Name == "ResamplingMethod") //NOXLATE
                     {
                         lblResamplingMethod.Visible =
                             cmbResamplingMethod.Visible =
                                 cmbResamplingMethod.Enabled = true;
 
                         cmbResamplingMethod.DataSource = new List<string>(prop.Value);
-                        var method = _fs.GetConnectionProperty("ResamplingMethod");
+                        var method = _fs.GetConnectionProperty("ResamplingMethod"); //NOXLATE
                         if (!string.IsNullOrEmpty(method))
                             cmbResamplingMethod.SelectedItem = method;
                         else



More information about the mapguide-commits mailing list