[Monodevelop-patches-list] r2293 - trunk/MonoDevelop/Unused/Gdl
John Luke <jluke@cfl.rr.com>
jluke at mono-cvs.ximian.com
Fri Mar 4 15:25:51 EST 2005
Author: jluke
Date: 2005-03-04 15:25:51 -0500 (Fri, 04 Mar 2005)
New Revision: 2293
Modified:
trunk/MonoDevelop/Unused/Gdl/DockLayout.cs
Log:
bind notebook/paned to master
Modified: trunk/MonoDevelop/Unused/Gdl/DockLayout.cs
===================================================================
--- trunk/MonoDevelop/Unused/Gdl/DockLayout.cs 2005-03-04 20:17:01 UTC (rev 2292)
+++ trunk/MonoDevelop/Unused/Gdl/DockLayout.cs 2005-03-04 20:25:51 UTC (rev 2293)
@@ -401,14 +401,14 @@
// FIXME: notebooks don't get names ...
if (node.Name == "notebook") {
DockNotebook dn = new DockNotebook ();
- //dn.Master = master;
+ dn.Bind (master);
dn.FromXml (node);
return dn;
}
// FIXME: paned don't get names ...
if (node.Name == "paned") {
DockPaned dp = new DockPaned ();
- //dp.Master = master;
+ dp.Bind (master);
dp.FromXml (node);
return dp;
}
More information about the Monodevelop-patches-list
mailing list