[mapguide-commits] r7277 - branches/maestro-4.0.x/Maestro.Base/UI

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Mon Dec 17 06:26:09 PST 2012


Author: jng
Date: 2012-12-17 06:26:08 -0800 (Mon, 17 Dec 2012)
New Revision: 7277

Modified:
   branches/maestro-4.0.x/Maestro.Base/UI/ResourcePropertiesDialog.cs
Log:
#2209: Backport to 4.0.x

Modified: branches/maestro-4.0.x/Maestro.Base/UI/ResourcePropertiesDialog.cs
===================================================================
--- branches/maestro-4.0.x/Maestro.Base/UI/ResourcePropertiesDialog.cs	2012-12-17 14:18:21 UTC (rev 7276)
+++ branches/maestro-4.0.x/Maestro.Base/UI/ResourcePropertiesDialog.cs	2012-12-17 14:26:08 UTC (rev 7277)
@@ -996,7 +996,7 @@
                     var cs = picker.SelectedCoordSys;
                     if (!string.IsNullOrEmpty(cs.EPSG))
                     {
-                        txtPrimarySRS.Text = cs.EPSG;
+                        txtPrimarySRS.Text = "EPSG:" + cs.EPSG;
                     }
                 }
             }
@@ -1011,7 +1011,7 @@
                     var cs = picker.SelectedCoordSys;
                     if (!string.IsNullOrEmpty(cs.EPSG))
                     {
-                        txtOtherSRS.Text = cs.EPSG;
+                        txtOtherSRS.Text = "EPSG:" + cs.EPSG;
                     }
                 }
             }



More information about the mapguide-commits mailing list