~ubuntu-branches/ubuntu/lucid/monodevelop/lucid

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore.GuiBuilder/GuiBuilderProject.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-01-10 14:25:59 UTC
  • mfrom: (1.2.5 upstream) (1.3.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100110142559-sorji5exvk9tyknr
Tags: 2.2+dfsg-2
* debian/rules/remove_support_for_non_debian_functionality.patch:
  + Also fix monodevelop-core-addins.pc to remove links to the
    addins we remove in Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
        {
53
53
                internal object MemoryProbe = Counters.GuiProjectsInMemory.CreateMemoryProbe ();
54
54
                
55
 
                ArrayList formInfos;
 
55
                List<GuiBuilderWindow> formInfos;
56
56
                Stetic.Project gproject;
57
57
                DotNetProject project;
58
58
                string fileName;
84
84
                                return;
85
85
                        
86
86
                        gproject = GuiBuilderService.SteticApp.CreateProject ();
87
 
                        formInfos = new ArrayList ();
 
87
                        formInfos = new List<GuiBuilderWindow> ();
88
88
                        
89
89
                        if (!System.IO.File.Exists (fileName)) {
90
90
                                // Regenerate the gtk-gui folder if the stetic project
223
223
                        }
224
224
                }
225
225
                
226
 
                public ICollection Windows {
 
226
                public ICollection<GuiBuilderWindow> Windows {
227
227
                        get {
228
228
                                Load ();
229
229
                                return formInfos;