mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-03-01 02:36:52 +00:00
2005-03-12 Mike Kestner <mkestner@novell.com>
* gtk/TreeViewColumn.custom : use PersistentData to hold the CellDataFuncs. svn path=/trunk/gtk-sharp/; revision=41744
This commit is contained in:
parent
64073ff268
commit
49f8fb470d
|
@ -1,3 +1,8 @@
|
||||||
|
2005-03-12 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
|
* gtk/TreeViewColumn.custom : use PersistentData to hold the
|
||||||
|
CellDataFuncs.
|
||||||
|
|
||||||
2005-03-12 Mike Kestner <mkestner@novell.com>
|
2005-03-12 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
* glib/Makefile.am : add new file.
|
* glib/Makefile.am : add new file.
|
||||||
|
|
|
@ -66,13 +66,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Hashtable cell_data_funcs;
|
|
||||||
|
|
||||||
Hashtable CellDataFuncs {
|
Hashtable CellDataFuncs {
|
||||||
get {
|
get {
|
||||||
if (cell_data_funcs == null)
|
if (PersistentData ["gtksharp_cell_data_funcs"] == null)
|
||||||
cell_data_funcs = new Hashtable ();
|
PersistentData ["gtksharp_cell_data_funcs"] = new Hashtable ();
|
||||||
return cell_data_funcs;
|
return PersistentData ["gtksharp_cell_data_funcs"] as Hashtable;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue