[mapguide-commits] r8471 - in trunk/Tools/Maestro/Maestro.Editors: . Common Diff LayerDefinition/Vector/Scales/SymbolParamEditors MapDefinition

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Sat Dec 27 09:16:54 PST 2014


Author: jng
Date: 2014-12-27 09:16:54 -0800 (Sat, 27 Dec 2014)
New Revision: 8471

Modified:
   trunk/Tools/Maestro/Maestro.Editors/Common/RepointerDialog.cs
   trunk/Tools/Maestro/Maestro.Editors/Diff/CompareResourceDialog.cs
   trunk/Tools/Maestro/Maestro.Editors/LayerDefinition/Vector/Scales/SymbolParamEditors/NumberEditor.cs
   trunk/Tools/Maestro/Maestro.Editors/MapDefinition/ExtentCalculationDialog.cs
   trunk/Tools/Maestro/Maestro.Editors/ResourceEditorServiceBase.cs
Log:
Fix some warnings

Modified: trunk/Tools/Maestro/Maestro.Editors/Common/RepointerDialog.cs
===================================================================
--- trunk/Tools/Maestro/Maestro.Editors/Common/RepointerDialog.cs	2014-12-27 17:12:51 UTC (rev 8470)
+++ trunk/Tools/Maestro/Maestro.Editors/Common/RepointerDialog.cs	2014-12-27 17:16:54 UTC (rev 8471)
@@ -50,7 +50,7 @@
         /// Constructor
         /// </summary>
         /// <param name="resId">The given resource, whose dependencies we want to re-point</param>
-        /// <param name="edSvc">The editor service</param>
+        /// <param name="conn">The server connection</param>
         public RepointerDialog(ResourceIdentifier resId, IServerConnection conn)
             : this()
         {

Modified: trunk/Tools/Maestro/Maestro.Editors/Diff/CompareResourceDialog.cs
===================================================================
--- trunk/Tools/Maestro/Maestro.Editors/Diff/CompareResourceDialog.cs	2014-12-27 17:12:51 UTC (rev 8470)
+++ trunk/Tools/Maestro/Maestro.Editors/Diff/CompareResourceDialog.cs	2014-12-27 17:16:54 UTC (rev 8471)
@@ -45,7 +45,7 @@
         /// <summary>
         /// Creates a new instance of CompareResourceDialog
         /// </summary>
-        /// <param name="resSvc">The resource service</param>
+        /// <param name="conn">The server connection</param>
         public CompareResourceDialog(IServerConnection conn)
             : this()
         {

Modified: trunk/Tools/Maestro/Maestro.Editors/LayerDefinition/Vector/Scales/SymbolParamEditors/NumberEditor.cs
===================================================================
--- trunk/Tools/Maestro/Maestro.Editors/LayerDefinition/Vector/Scales/SymbolParamEditors/NumberEditor.cs	2014-12-27 17:12:51 UTC (rev 8470)
+++ trunk/Tools/Maestro/Maestro.Editors/LayerDefinition/Vector/Scales/SymbolParamEditors/NumberEditor.cs	2014-12-27 17:16:54 UTC (rev 8471)
@@ -75,6 +75,9 @@
             }
         }
 
+        /// <summary>
+        /// Gets the value of this editor
+        /// </summary>
         public decimal Value
         {
             get { return numericUpDown.Value; }

Modified: trunk/Tools/Maestro/Maestro.Editors/MapDefinition/ExtentCalculationDialog.cs
===================================================================
--- trunk/Tools/Maestro/Maestro.Editors/MapDefinition/ExtentCalculationDialog.cs	2014-12-27 17:12:51 UTC (rev 8470)
+++ trunk/Tools/Maestro/Maestro.Editors/MapDefinition/ExtentCalculationDialog.cs	2014-12-27 17:16:54 UTC (rev 8471)
@@ -43,7 +43,8 @@
         /// <summary>
         /// Initializes a new instance of the <see cref="ExtentCalculationDialog"/> class.
         /// </summary>
-        /// <param name="mdf">The MDF.</param>
+        /// <param name="mdf">The Map Definition</param>
+        /// <param name="conn">The server connection</param>
         public ExtentCalculationDialog(IMapDefinition mdf, IServerConnection conn)
         {
             InitializeComponent();

Modified: trunk/Tools/Maestro/Maestro.Editors/ResourceEditorServiceBase.cs
===================================================================
--- trunk/Tools/Maestro/Maestro.Editors/ResourceEditorServiceBase.cs	2014-12-27 17:12:51 UTC (rev 8470)
+++ trunk/Tools/Maestro/Maestro.Editors/ResourceEditorServiceBase.cs	2014-12-27 17:16:54 UTC (rev 8471)
@@ -109,6 +109,9 @@
             return null;
         }
 
+        /// <summary>
+        /// Gets the attached server connection
+        /// </summary>
         public IServerConnection CurrentConnection
         {
             get { return _conn; }



More information about the mapguide-commits mailing list