mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 17:55:27 +00:00
2004-02-12 Mike Kestner <mkestner@ximian.com>
* sample/GladeViewer.cs : fix a broken api usage. svn path=/trunk/gtk-sharp/; revision=23078
This commit is contained in:
parent
f692bf6d37
commit
efd542b29c
|
@ -1,3 +1,7 @@
|
|||
2004-02-12 Mike Kestner <mkestner@ximian.com>
|
||||
|
||||
* sample/GladeViewer.cs : fix a broken api usage.
|
||||
|
||||
2004-02-12 Mike Kestner <mkestner@ximian.com>
|
||||
|
||||
* gnome/Gnome.metadata : hide the GList API
|
||||
|
|
|
@ -36,8 +36,7 @@ namespace GladeSamples {
|
|||
Glade.XML.GetWidgetTree (wid) != null);
|
||||
|
||||
Console.WriteLine ("\nList of created widgets:");
|
||||
GLib.List l = gxml.GetWidgetPrefix ("");
|
||||
foreach (Widget w in l) {
|
||||
foreach (Widget w in gxml.GetWidgetPrefix ("")) {
|
||||
Console.WriteLine ("{0} {1}",
|
||||
w.GetType (),
|
||||
Glade.XML.GetWidgetName (w));
|
||||
|
|
Loading…
Reference in a new issue