~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Content/TextEditorExtension.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
{
42
42
        public class TextEditorExtension : ITextEditorExtension, ICommandRouter
43
43
        {
44
 
                internal Document document;
 
44
                internal protected Document document;
45
45
                
46
46
                internal protected void Initialize (Document document)
47
47
                {
57
57
                protected Document Document {
58
58
                        get { return document; }
59
59
                }
60
 
                
61
 
                protected TextEditor Editor {
62
 
                        get { return document.TextEditor; }
63
 
                }
64
 
                
65
 
                protected TextEditorData TextEditorData {
66
 
                        get { return document.TextEditorData; }
67
 
                }
68
 
                
 
60
 
 
61
                protected TextEditorData Editor {
 
62
                        get { return document.Editor; }
 
63
                }
 
64
 
69
65
                protected FilePath FileName {
70
66
                        get {
71
67
                                IViewContent view = document.Window.ViewContent;