Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
* libstetic/wrapper/Container.cs: Call base method when
Browse files Browse the repository at this point in the history
  attaching/detaching designer, since Object has some logic in those
  methods.

svn path=/trunk/stetic/; revision=91247
  • Loading branch information
slluis committed Dec 13, 2007
1 parent 1ff4359 commit 44fcd73
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2007-12-13 Lluis Sanchez Gual <lluis@novell.com>

* libstetic/wrapper/Container.cs: Call base method when attaching/detaching
designer, since Object has some logic in those methods.

2007-12-13 Lluis Sanchez Gual <lluis@novell.com>

* libstetic/wrapper/ScrolledWindow.cs, libstetic/wrapper/objects.xml: Set
Expand Down
2 changes: 2 additions & 0 deletions libstetic/wrapper/Container.cs
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,7 @@ internal void GenerateTooltip (GeneratorContext ctx, Widget widget)

internal protected override void OnDesignerAttach (IDesignArea designer)
{
base.OnDesignerAttach (designer);
this.designer = designer;
foreach (Gtk.Widget w in RealChildren) {
ObjectWrapper wr = ObjectWrapper.Lookup (w);
Expand All @@ -691,6 +692,7 @@ internal protected override void OnDesignerAttach (IDesignArea designer)

internal protected override void OnDesignerDetach (IDesignArea designer)
{
base.OnDesignerDetach (designer);
foreach (Gtk.Widget w in RealChildren) {
ObjectWrapper wr = ObjectWrapper.Lookup (w);
if (wr != null)
Expand Down

0 comments on commit 44fcd73

Please sign in to comment.