summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorJames Henstridge <james@daa.com.au>2003-07-26 12:05:51 +0000
committerJames Henstridge <jamesh@src.gnome.org>2003-07-26 12:05:51 +0000
commitf12b1f2641b24969564a3d991c909cce96ddffd6 (patch)
tree0bbae8afa345731f12d89eff1b172b7ad127d552 /TODO
parentde951f27c052037e2deeb38864d71037c0817f80 (diff)
downloadpygtk-f12b1f2641b24969564a3d991c909cce96ddffd6.tar.gz
apply Elliot Lee's threading patch. Still need to fix the remaining
2003-07-26 James Henstridge <james@daa.com.au> * gtk/gdk.override: apply Elliot Lee's threading patch. Still need to fix the remaining threading problems.
Diffstat (limited to 'TODO')
-rw-r--r--TODO11
1 files changed, 0 insertions, 11 deletions
diff --git a/TODO b/TODO
index b05595e8..bc578301 100644
--- a/TODO
+++ b/TODO
@@ -10,14 +10,3 @@ Things to do for the gtk 2.0 based release
new tree models defined in Python. Need to look at how the
GtkTreeIter->tree_node lifetime is handled, as it doesn't look like
anything is called to let us know that that data should be unrefed.
-
-- Make python subclasses of GObjects into new types in the GType
- system. Should be possible to do from GObject.__class_init__ and a
- bit of extra magic.
-
- Maybe stop adding get_type() class methods, and switch over to
- adding __gtype__ class attributes. This is easier when defining new
- GObject types (ie. just set an attribute), but may mean calling
- get_type() for all classes. Could do some special code so that the
- __gtype__ attributes are of a special type that calls the get_type()
- macro to convert to an int.