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-02-15 21:25:10 +0300
committerLluis Sanchez <llsan@microsoft.com>2019-02-15 21:52:56 +0300
commit2e9046725a5629d208a35e8312ad5904a05c851f (patch)
treebc87f59d35ebf88f0683dbbe39bf71c6be5fa6e4 /main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor
parentca94e4851759c70a3f44e6ed4d2d1f3296ed0bcf (diff)
Track API changes
All services are now referenced from the IdeServices class
Diffstat (limited to 'main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor')
-rw-r--r--main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs b/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs
index 874f1cebd1..072e98b9c6 100644
--- a/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs
+++ b/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs
@@ -1,4 +1,4 @@
-//
+//
// POEditorWidget.cs
//
// Author:
@@ -665,7 +665,7 @@ namespace MonoDevelop.Gettext
line = "?";
}
string fullName = System.IO.Path.Combine (System.IO.Path.GetDirectoryName (this.poFileName), file);
- this.foundInStore.AppendValues (file, line, fullName, DesktopService.GetIconForFile (fullName, IconSize.Menu));
+ this.foundInStore.AppendValues (file, line, fullName, IdeServices.DesktopService.GetIconForFile (fullName, IconSize.Menu));
}
}
@@ -974,7 +974,7 @@ namespace MonoDevelop.Gettext
void ClearTasks ()
{
- TaskService.Errors.ClearByOwner (this);
+ IdeServices.TaskService.Errors.ClearByOwner (this);
}
static bool CompareTasks (List<TaskListEntry> list1, List<TaskListEntry> list2)
@@ -1141,7 +1141,7 @@ namespace MonoDevelop.Gettext
Runtime.RunInMainThread (() => {
ClearTasks ();
currentTasks = tasks;
- TaskService.Errors.AddRange (tasks);
+ IdeServices.TaskService.Errors.AddRange (tasks);
});
}
}