~ubuntu-branches/ubuntu/maverick/monodevelop/maverick

« back to all changes in this revision

Viewing changes to src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment.Gui/DeployDialog.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-07-05 13:00:05 UTC
  • mfrom: (1.2.8 upstream) (1.3.9 experimental)
  • Revision ID: james.westby@ubuntu.com-20100705130005-d6hp4k5gcn1xkj8c
Tags: 2.4+dfsg-1ubuntu1
* debian/patches/remove_support_for_moonlight.patch,
  debian/patches/dont_add_moonlight_to_core_addins.patch,
  debian/control:
  + Enable support for Moonlight
* debian/rules:
  + Ensure Moonlight addin isn't shipped in main MonoDevelop package by
    mistake

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
using System.Collections.ObjectModel;
5
5
using Gtk;
6
6
using MonoDevelop.Projects;
7
 
using MonoDevelop.Ide.Gui;
8
7
using MonoDevelop.Core;
 
8
using MonoDevelop.Ide;
9
9
 
10
10
namespace MonoDevelop.Deployment.Gui
11
11
{
91
91
                        
92
92
                        store.Clear ();
93
93
                        foreach (PackageBuilder builder in builders) {
94
 
                                Gdk.Pixbuf pix = MonoDevelop.Core.Gui.ImageService.GetPixbuf (builder.Icon, Gtk.IconSize.LargeToolbar);
 
94
                                Gdk.Pixbuf pix = ImageService.GetPixbuf (builder.Icon, Gtk.IconSize.LargeToolbar);
95
95
                                store.AppendValues (pix, builder.Description, builder);
96
96
                        }
97
97
                        
222
222
                                break;
223
223
                        }
224
224
                        if (msg != null) {
225
 
                                MonoDevelop.Core.Gui.MessageService.ShowError (this, msg);
 
225
                                 MonoDevelop.Ide.MessageService.ShowError (this, msg);
226
226
                                return false;
227
227
                        }
228
228
                        else