diff options
-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() |