From cb75f8b85f489f2067123ccec1bb36d211c07478 Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Fri, 4 Oct 2002 18:52:03 +0000 Subject: [PATCH] Cut and paste bug fix svn path=/trunk/gtk-sharp/; revision=7987 --- gtk/FileSelection.custom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/FileSelection.custom b/gtk/FileSelection.custom index 52a8cd1d0..3cf6969a0 100644 --- a/gtk/FileSelection.custom +++ b/gtk/FileSelection.custom @@ -36,7 +36,7 @@ public Gtk.TreeView FileList { [DllImport("gtksharpglue")] static extern IntPtr gtksharp_file_selection_get_selection_entry (IntPtr i); public Gtk.Entry SelectionEntry { - get { return new Gtk.Entry (gtksharp_file_selection_get_file_list (this.Handle)); } + get { return new Gtk.Entry (gtksharp_file_selection_get_selection_entry (this.Handle)); } } [DllImport("gtksharpglue")]