summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-12-16 20:11:47 +0000
committerMatt Wilson <msw@src.gnome.org>1999-12-16 20:11:47 +0000
commitab42860b3aae163fe794ce7a1979e3f3b12e32e2 (patch)
treef2aa836d583a7ec40f9e18cd77b5306230d8a6af
parent4c2ecf5b5fcd152da16b0d4c30bf15dfa4c018b6 (diff)
downloadpygtk-ab42860b3aae163fe794ce7a1979e3f3b12e32e2.tar.gz
oops - left out the _gtk. part
1999-12-16 Matt Wilson <msw@redhat.com> * gtk.py (GtkCList.__getattr__): oops - left out the _gtk. part
-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)