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

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Core/MonoDevelop.Projects/SolutionItemEventArgs.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:
27
27
 
28
28
using System;
29
29
using MonoDevelop.Projects;
 
30
using MonoDevelop.Core;
 
31
using System.Collections.Generic;
30
32
 
31
33
namespace MonoDevelop.Projects
32
34
{
79
81
        
80
82
        public delegate void SolutionItemModifiedEventHandler (object sender, SolutionItemModifiedEventArgs e);
81
83
        
82
 
        public class SolutionItemModifiedEventArgs: SolutionItemEventArgs
 
84
        public class SolutionItemModifiedEventArgs: EventArgsChain<SolutionItemModifiedEventInfo>
 
85
        {
 
86
                public SolutionItemModifiedEventArgs (SolutionItem item, string hint)
 
87
                {
 
88
                        Add (new SolutionItemModifiedEventInfo (item, hint));
 
89
                }
 
90
        }
 
91
        
 
92
        public class SolutionItemModifiedEventInfo: SolutionItemEventArgs
83
93
        {
84
94
                string hint;
85
95
                
86
 
                public SolutionItemModifiedEventArgs (SolutionItem item, string hint): base (item)
 
96
                public SolutionItemModifiedEventInfo (SolutionItem item, string hint): base (item)
87
97
                {
88
98
                        this.hint = hint;
89
99
                }