summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--gtk.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d488eade..3132dd03 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+1999-12-16 Matt Wilson <msw@redhat.com>
+
+ * gtk.py (GtkCList.__getattr__): oops - left out the _gtk. part
+
1999-12-15 Matt Wilson <msw@redhat.com>
* gtk.py (GdkColor): added a function to create a GdkColor
diff --git a/gtk.py b/gtk.py
index fab65597..a2f5c4f4 100644
--- a/gtk.py
+++ b/gtk.py
@@ -1156,7 +1156,7 @@ class GtkCList(GtkContainer):
attrs = {
'selection':_gtk.gtk_clist_get_selection,
'focus_row':_gtk.gtk_clist_get_focus_row,
- 'rows':_gtk_clist_get_rows,
+ 'rows':_gtk.gtk_clist_get_rows,
}
if attrs.has_key(attr):
return attrs[attr](self._o)