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.Ide.Gui/IViewContent.cs')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/IViewContent.cs8
1 files changed, 5 insertions, 3 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/IViewContent.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/IViewContent.cs
index 2fbc0c618e..0c76d3cc02 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/IViewContent.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/IViewContent.cs
@@ -30,7 +30,7 @@ using MonoDevelop.Projects;
namespace MonoDevelop.Ide.Gui
{
- public interface IViewContent : IBaseViewContent
+ public interface IViewContent : IBaseViewContent
{
Project Project { get; set; }
@@ -45,9 +45,11 @@ namespace MonoDevelop.Ide.Gui
bool IsDirty { get; set; }
bool IsReadOnly { get; }
- void Load (string fileName);
+ void Load (FileOpenInformation fileOpenInformation);
+ void Load (string fileName);
void LoadNew (System.IO.Stream content, string mimeType);
- void Save (string fileName);
+ void Save (FileSaveInformation fileSaveInformation);
+ void Save (string fileName);
void Save ();
/// <summary>