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:
authorMarius Ungureanu <teromario@yahoo.com>2017-06-25 14:30:35 +0300
committerGitHub <noreply@github.com>2017-06-25 14:30:35 +0300
commit9e327cc667fec776b44231ab5bb2fa1a8e5ac34b (patch)
treefc80bbbdacf8604850b79b34b861235d8aa51761 /main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking
parentd6e5ec6dc6bea3595919bb15b90a6948e5bf5d5f (diff)
[Gtk#] Update to match newest API (#2682)
The Invoke API now can take both an Action and an EventHandler. delegate {} causes ambiguous results.
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking/DockFrameTopLevel.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking/DockFrameTopLevel.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking/DockFrameTopLevel.cs
index 723e7ae6a8..0f2a5fa8a9 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking/DockFrameTopLevel.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking/DockFrameTopLevel.cs
@@ -128,7 +128,7 @@ namespace MonoDevelop.Components.Docking
if (ContainerWindow != null) {
if (!repositionRequested && width != 0 && height != 0) {
repositionRequested = true;
- Application.Invoke (delegate {
+ Application.Invoke ((o, args) => {
var pos = frame.GetScreenCoordinates (new Gdk.Point (x, y));
DesktopService.PlaceWindow (ContainerWindow, pos.X, pos.Y, width, height);
repositionRequested = false;