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:
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Components/MenuButton.cs')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Components/MenuButton.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components/MenuButton.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components/MenuButton.cs
index 87ca8aa151..50443ef77c 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components/MenuButton.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components/MenuButton.cs
@@ -109,7 +109,7 @@ namespace MonoDevelop.Components
}
if (creator != null) {
- Gtk.Menu menu = creator (this);
+ Menu menu = creator (this);
if (menu != null) {
var oldRelief = MenuOpened ();
@@ -140,7 +140,7 @@ namespace MonoDevelop.Components
this.State = StateType.Active;
}
- void PositionFunc (Gtk.Menu mn, out int x, out int y, out bool push_in)
+ void PositionFunc (Menu mn, out int x, out int y, out bool push_in)
{
this.GdkWindow.GetOrigin (out x, out y);
Gdk.Rectangle rect = this.Allocation;