Index: src/DeltaShell/DeltaShell.Plugins.SharpMapGis.Gui/GisGuiService.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/DeltaShell/DeltaShell.Plugins.SharpMapGis.Gui/GisGuiService.cs (.../GisGuiService.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/DeltaShell/DeltaShell.Plugins.SharpMapGis.Gui/GisGuiService.cs (.../GisGuiService.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -8,7 +8,7 @@ namespace DeltaShell.Plugins.SharpMapGis.Gui { - public class GisGuiService: IGisGuiService + public class GisGuiService : IGisGuiService { private readonly GuiPlugin guiPlugin; @@ -27,7 +27,7 @@ foreach (IView view in mapVews) { var mapView = view as MapView; - if(mapView != null) + if (mapView != null) { Cursor currentCursor = mapView.MapControl.Cursor; mapView.MapControl.Cursor = Cursors.WaitCursor; @@ -40,7 +40,7 @@ public void ZoomCurrentMapToEnvelope(IEnvelope envelope) { var mapView = guiPlugin.Gui.DocumentViews.ActiveView as MapView; - if(mapView == null) + if (mapView == null) { return; }