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/FileEntry.cs')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Components/FileEntry.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components/FileEntry.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components/FileEntry.cs
index a47612b712..7445a727a2 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components/FileEntry.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components/FileEntry.cs
@@ -40,7 +40,7 @@ namespace MonoDevelop.Components
public FileEntry (string name) : base (name)
{
- Action = Gtk.FileChooserAction.Open;
+ Action = FileChooserAction.Open;
}
protected override string ShowBrowseDialog (string name, string startIn)
@@ -57,6 +57,6 @@ namespace MonoDevelop.Components
return null;
}
- public Gtk.FileChooserAction Action { get; set; }
+ public new FileChooserAction Action { get; set; }
}
}