[Monodevelop-patches-list] r2147 - in trunk/MonoDevelop/Core/src/MonoDevelop.Base: . Gui/Pads/FileScout
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Mon Jan 17 18:43:09 EST 2005
Author: tberman
Date: 2005-01-17 18:43:09 -0500 (Mon, 17 Jan 2005)
New Revision: 2147
Modified:
trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog
trunk/MonoDevelop/Core/src/MonoDevelop.Base/Gui/Pads/FileScout/FileList.cs
Log:
2005-01-17 Todd Berman <tberman at off.net>
* Gui/Pads/FileScout/FileList.cs: This is a ListStore, not a
TreeStore.
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog 2005-01-17 00:52:57 UTC (rev 2146)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog 2005-01-17 23:43:09 UTC (rev 2147)
@@ -1,3 +1,8 @@
+2005-01-17 Todd Berman <tberman at off.net>
+
+ * Gui/Pads/FileScout/FileList.cs: This is a ListStore, not a
+ TreeStore.
+
2005-01-17 Lluis Sanchez Gual <lluis at novell.com>
* Internal/Serialization/ItemProperty.cs: Added workaround for a bug
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Base/Gui/Pads/FileScout/FileList.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Base/Gui/Pads/FileScout/FileList.cs 2005-01-17 00:52:57 UTC (rev 2146)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Base/Gui/Pads/FileScout/FileList.cs 2005-01-17 23:43:09 UTC (rev 2147)
@@ -21,7 +21,7 @@
{
private FileSystemWatcher watcher;
private ArrayList Items;
- private Gtk.TreeStore store;
+ private Gtk.ListStore store;
private Gtk.Menu popmenu = null;
FileListItem selectedItem = null;
Gtk.TreeIter selectedIter;
@@ -29,7 +29,7 @@
public FileList ()
{
Items = new ArrayList ();
- store = new Gtk.TreeStore (typeof (string), typeof (string), typeof(string), typeof(FileListItem), typeof (Gdk.Pixbuf));
+ store = new Gtk.ListStore (typeof (string), typeof (string), typeof(string), typeof(FileListItem), typeof (Gdk.Pixbuf));
Model = store;
HeadersVisible = true;
More information about the Monodevelop-patches-list
mailing list