diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-02 17:42:27 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-02 17:42:27 +0800 |
commit | 94627ccafc42066fe45265612bbdc88e8b5671d1 (patch) | |
tree | 55de18c6485aeba7793d3c62f0ef7fc7e11ba1c0 | |
parent | 83e3f12e71422ebc42c523b9625b12eda77cca7c (diff) | |
download | gsoc2013-empathy-94627ccafc42066fe45265612bbdc88e8b5671d1.tar gsoc2013-empathy-94627ccafc42066fe45265612bbdc88e8b5671d1.tar.gz gsoc2013-empathy-94627ccafc42066fe45265612bbdc88e8b5671d1.tar.bz2 gsoc2013-empathy-94627ccafc42066fe45265612bbdc88e8b5671d1.tar.lz gsoc2013-empathy-94627ccafc42066fe45265612bbdc88e8b5671d1.tar.xz gsoc2013-empathy-94627ccafc42066fe45265612bbdc88e8b5671d1.tar.zst gsoc2013-empathy-94627ccafc42066fe45265612bbdc88e8b5671d1.zip |
Fix ContactListStore constructor. Fixes bug #522297 (Juan Pizarro).
svn path=/trunk/; revision=858
-rw-r--r-- | python/pyempathygtk.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/python/pyempathygtk.patch b/python/pyempathygtk.patch new file mode 100644 index 000000000..a0730a181 --- /dev/null +++ b/python/pyempathygtk.patch @@ -0,0 +1,18 @@ +--- /home/zdra/Desktop/pyempathygtk.defs 2008-04-02 11:19:27.000000000 +0200 ++++ pyempathygtk/pyempathygtk.defs 2008-04-02 11:29:23.000000000 +0200 +@@ -1042,10 +1042,13 @@ + (return-type "GType") + ) + +-(define-method store_new +- (of-object "EmpathyContactList") ++(define-function empathy_contact_list_store_new ++ (is-constructor-of "EmpathyContactListStore") + (c-name "empathy_contact_list_store_new") + (return-type "EmpathyContactListStore*") ++ (parameters ++ '("EmpathyContactList*" "list_iface") ++ ) + ) + + (define-method get_list_iface |