Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <llsan@microsoft.com>2019-04-04 14:39:45 +0300
committerLluis Sanchez <llsan@microsoft.com>2019-04-04 14:39:45 +0300
commit03e92bc31f47e4b33d558ad151c20292ed7a93f9 (patch)
treef8b21f80d96008e34428bb48de319f6d454fbe49 /main/external/fsharpbinding
parent5194dcd2139a3cbcd65eba3c7c51fda558186ce1 (diff)
Track api changes
Diffstat (limited to 'main/external/fsharpbinding')
-rw-r--r--main/external/fsharpbinding/MonoDevelop.FSharpBinding/Services/LanguageService.fs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/external/fsharpbinding/MonoDevelop.FSharpBinding/Services/LanguageService.fs b/main/external/fsharpbinding/MonoDevelop.FSharpBinding/Services/LanguageService.fs
index dab15e20e2..e5b6188375 100644
--- a/main/external/fsharpbinding/MonoDevelop.FSharpBinding/Services/LanguageService.fs
+++ b/main/external/fsharpbinding/MonoDevelop.FSharpBinding/Services/LanguageService.fs
@@ -230,11 +230,11 @@ type LanguageService(dirtyNotify, _extraProjectInfo) as x =
let showStatusIcon projectFileName =
if loadingProjects.Add projectFileName then
- IdeApp.TypeSystemService.ShowTypeInformationGatheringIcon()
+ IdeApp.TypeSystemService.BeginWorkspaceLoad()
let hideStatusIcon projectFileName =
if loadingProjects.Remove projectFileName then
- IdeApp.TypeSystemService.HideTypeInformationGatheringIcon()
+ IdeApp.TypeSystemService.EndWorkspaceLoad()
// Create an instance of interactive checker. The callback is called by the F# compiler service
// when its view of the prior-typechecking-state of the start of a file has changed, for example