mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-23 14:31:08 +00:00
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:
parent
86d29321c3
commit
05c22c47b8
|
@ -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>
|
2007-11-12 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
* generator/SymbolTable.cs: remove GCallback mapping.
|
* generator/SymbolTable.cs: remove GCallback mapping.
|
||||||
|
|
|
@ -72,7 +72,7 @@ namespace GtkSamples {
|
||||||
Assembly assm = assemblies [path.Indices [0]];
|
Assembly assm = assemblies [path.Indices [0]];
|
||||||
if (path.Indices.Length > 1) {
|
if (path.Indices.Length > 1) {
|
||||||
Type t = assm.GetTypes ()[path.Indices [1]];
|
Type t = assm.GetTypes ()[path.Indices [1]];
|
||||||
if (path.Indices.Length < 2)
|
if (path.Indices.Length > 2)
|
||||||
return t.GetMembers () [path.Indices [2]];
|
return t.GetMembers () [path.Indices [2]];
|
||||||
else
|
else
|
||||||
return t;
|
return t;
|
||||||
|
|
Loading…
Reference in a new issue