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

« back to all changes in this revision

Viewing changes to src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/AnnotateCommand.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:
33
33
using MonoDevelop.Ide;
34
34
 
35
35
namespace MonoDevelop.VersionControl 
36
 
{
 
36
{/*
37
37
        /// <summary>
38
38
        /// Command handler for showing annotations
39
39
        /// </summary>
58
58
                        Repository repo = VersionControlService.GetRepositoryReference (Path.GetDirectoryName (file.FullPath), file.FileName);
59
59
                        item.Visible = AnnotateView.Show (repo, file, true);
60
60
                }
61
 
        }
62
 
 
 
61
        }*/
 
62
        
 
63
        /*
63
64
        /// <summary>
64
65
        /// Command handler for hiding annotations
65
66
        /// </summary>
84
85
                        Repository repo = VersionControlService.GetRepositoryReference (Path.GetDirectoryName (file.FullPath), file.FileName);
85
86
                        item.Visible = AnnotateView.Hide (repo, file, true);
86
87
                }
87
 
        }
 
88
        }*/
88
89
}