diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 23:19:17 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 23:19:17 +0800 |
commit | 21d4e24e8d0624f5f6ec5be6acd45c6c02d30e44 (patch) | |
tree | 2ac9c9707a165e4e471c0e5ddb89d2cee677162f /python/pyempathygtk | |
parent | 6cbe46ff82e331bd8d7101980908928611b73b8f (diff) | |
download | gsoc2013-empathy-21d4e24e8d0624f5f6ec5be6acd45c6c02d30e44.tar gsoc2013-empathy-21d4e24e8d0624f5f6ec5be6acd45c6c02d30e44.tar.gz gsoc2013-empathy-21d4e24e8d0624f5f6ec5be6acd45c6c02d30e44.tar.bz2 gsoc2013-empathy-21d4e24e8d0624f5f6ec5be6acd45c6c02d30e44.tar.lz gsoc2013-empathy-21d4e24e8d0624f5f6ec5be6acd45c6c02d30e44.tar.xz gsoc2013-empathy-21d4e24e8d0624f5f6ec5be6acd45c6c02d30e44.tar.zst gsoc2013-empathy-21d4e24e8d0624f5f6ec5be6acd45c6c02d30e44.zip |
upgrade Python bindings
Diffstat (limited to 'python/pyempathygtk')
-rw-r--r-- | python/pyempathygtk/pyempathygtk.defs | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/python/pyempathygtk/pyempathygtk.defs b/python/pyempathygtk/pyempathygtk.defs index 816261d39..b0ce54ae3 100644 --- a/python/pyempathygtk/pyempathygtk.defs +++ b/python/pyempathygtk/pyempathygtk.defs @@ -181,7 +181,8 @@ '("is-active" "EMPATHY_CONTACT_LIST_STORE_COL_IS_ACTIVE") '("is-online" "EMPATHY_CONTACT_LIST_STORE_COL_IS_ONLINE") '("is-separator" "EMPATHY_CONTACT_LIST_STORE_COL_IS_SEPARATOR") - '("can-voip" "EMPATHY_CONTACT_LIST_STORE_COL_CAN_VOIP") + '("can-audio-call" "EMPATHY_CONTACT_LIST_STORE_COL_CAN_AUDIO_CALL") + '("can-video-call" "EMPATHY_CONTACT_LIST_STORE_COL_CAN_VIDEO_CALL") '("count" "EMPATHY_CONTACT_LIST_STORE_COL_COUNT") ) ) @@ -1188,9 +1189,15 @@ (return-type "GtkWidget*") ) -(define-method call_menu_item_new +(define-method audio_call_menu_item_new (of-object "EmpathyContact") - (c-name "empathy_contact_call_menu_item_new") + (c-name "empathy_contact_audio_call_menu_item_new") + (return-type "GtkWidget*") +) + +(define-method video_call_menu_item_new + (of-object "EmpathyContact") + (c-name "empathy_contact_video_call_menu_item_new") (return-type "GtkWidget*") ) |