2007-11-12 Mike Kestner <mkestner@novell.com>

* sample/TreeModelDemo.cs: lt/gt typo bugfix [Fixes #333653]

svn path=/trunk/gtk-sharp/; revision=89520
This commit is contained in:
Mike Kestner 2007-11-13 03:19:13 +00:00
parent 86d29321c3
commit 05c22c47b8
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-11-12 Mike Kestner <mkestner@novell.com>
* sample/TreeModelDemo.cs: lt/gt typo bugfix [Fixes #333653]
2007-11-12 Mike Kestner <mkestner@novell.com>
* generator/SymbolTable.cs: remove GCallback mapping.

View File

@ -72,7 +72,7 @@ namespace GtkSamples {
Assembly assm = assemblies [path.Indices [0]];
if (path.Indices.Length > 1) {
Type t = assm.GetTypes ()[path.Indices [1]];
if (path.Indices.Length < 2)
if (path.Indices.Length > 2)
return t.GetMembers () [path.Indices [2]];
else
return t;