diff options
author | Olivier Le Thanh Duong <olivier@lethanh.be> | 2009-05-22 04:09:41 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2009-05-29 15:39:42 +0800 |
commit | cf54c58bf9331e0e22c6f6dc42b78ce2b1d29616 (patch) | |
tree | 55d27f0c30c0e356bb6ac6d11afc0b9003139f6b | |
parent | eae07d39d08ef7568acd9b594dfd0172b1f7613d (diff) | |
download | gsoc2013-empathy-cf54c58bf9331e0e22c6f6dc42b78ce2b1d29616.tar gsoc2013-empathy-cf54c58bf9331e0e22c6f6dc42b78ce2b1d29616.tar.gz gsoc2013-empathy-cf54c58bf9331e0e22c6f6dc42b78ce2b1d29616.tar.bz2 gsoc2013-empathy-cf54c58bf9331e0e22c6f6dc42b78ce2b1d29616.tar.lz gsoc2013-empathy-cf54c58bf9331e0e22c6f6dc42b78ce2b1d29616.tar.xz gsoc2013-empathy-cf54c58bf9331e0e22c6f6dc42b78ce2b1d29616.tar.zst gsoc2013-empathy-cf54c58bf9331e0e22c6f6dc42b78ce2b1d29616.zip |
Fix the python example
-rwxr-xr-x | python/example.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/example.py b/python/example.py index cffd5fffb..38a04978e 100755 --- a/python/example.py +++ b/python/example.py @@ -16,7 +16,8 @@ class HelloWorld: manager = empathy.ContactManager() store = empathygtk.ContactListStore(manager) - view = empathygtk.ContactListView(store, 0) + features = empathygtk.ContactListFeatureFlags(empathygtk.CONTACT_LIST_FEATURE_NONE) + view = empathygtk.ContactListView(store, 0, features) self.window.add (view) view.show() |