~ubuntu-branches/ubuntu/feisty/monodevelop/feisty

« back to all changes in this revision

Viewing changes to Core/src/MonoDevelop.Components/MonoDevelop.Components.Commands/CommandRouterContainer.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-08-18 00:51:23 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060818005123-5iit07y0j7wjg55f
Tags: 0.11+svn20060818-0ubuntu1
* New SVN snapshot
  + Works with Gtk# 2.9.0
* debian/control:
  + Updated Build-Depends
* debian/patches/use_nunit2.2.dpatch,
  debian/patches/use_real_libs.dpatch:
  + Updated
* debian/patches/versioncontrol_buildfix.dpatch:
  + Fix build failure in the version control addin

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
namespace MonoDevelop.Components.Commands
32
32
{
33
 
        public class CommandRouterContainer: Gtk.EventBox, ICommandDelegatorRouter
 
33
        public class CommandRouterContainer: Gtk.HBox, ICommandDelegatorRouter
34
34
        {
35
35
                object endTarget;
36
36
                object delegated;
37
37
                
38
38
                public CommandRouterContainer (Gtk.Widget child, object target, bool continueToParent)
39
39
                {
40
 
                        Add (child);
 
40
                        PackStart (child, true, true, 0);
41
41
                        delegated = target;
42
42
                        if (continueToParent)
43
43
                                endTarget = Parent;