From ace9176d4abad5ed19e7abf4f6fa2c54285499be Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Wed, 9 Feb 2011 19:29:44 -0600 Subject: [PATCH] Update NodeViewDemo to new API. * sample/NodeViewDemo.cs: s/VBox/ContentArea again. --- sample/NodeViewDemo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample/NodeViewDemo.cs b/sample/NodeViewDemo.cs index 56e3a1932..1fef27172 100644 --- a/sample/NodeViewDemo.cs +++ b/sample/NodeViewDemo.cs @@ -139,7 +139,7 @@ namespace GtkSamples { DefaultSize = new Gdk.Size (480, 100); HBox hbox = new HBox (false, 4); - VBox.PackStart (hbox, true, true, 0); + ContentArea.PackStart (hbox, true, true, 0); Gtk.Image icon = new Gtk.Image (Stock.DialogInfo, IconSize.Dialog); hbox.PackStart (icon, false, false, 0);