# HG changeset patch # User opensuse-project@opensuse.org # Date 1293536059 0 # Node ID 37c9f6020c358a45c5f4bb911bfbaf3f7a00c522 # Parent 25bbabd11c91037f02a4f6cbd3b93baad166f29e Stop translating gpointer to int in the dbus API. This has the effect of removing a number of functions from the API, which probably shouldn't have been there in the first place. Fixes #12507. committer: John Bailey diff -r 25bbabd11c91 -r 37c9f6020c35 COPYRIGHT --- a/COPYRIGHT Tue Dec 28 11:09:22 2010 +0000 +++ b/COPYRIGHT Tue Dec 28 11:34:19 2010 +0000 @@ -359,6 +359,7 @@ Gudmundur Bjarni Olafsson Bartosz Oler Oliver +The openSUSE Project Jürgen Orschiedt Stefan Ott Shawn Outman diff -r 25bbabd11c91 -r 37c9f6020c35 ChangeLog --- a/ChangeLog Tue Dec 28 11:09:22 2010 +0000 +++ b/ChangeLog Tue Dec 28 11:34:19 2010 +0000 @@ -3,6 +3,8 @@ version 2.7.10 (??/??/????): libpurple: * Stop sending audio when placing a call on hold. (Jakub Adam) (#13032) + * Stop translating gpointers to ints in the dbus API. This removes + functions from the dbus API. (The openSUSE Project) (#12507) Pidgin: * Support using the Page Up and Page Down keys on the numeric keypad in diff -r 25bbabd11c91 -r 37c9f6020c35 libpurple/dbus-analyze-functions.py --- a/libpurple/dbus-analyze-functions.py Tue Dec 28 11:09:22 2010 +0000 +++ b/libpurple/dbus-analyze-functions.py Tue Dec 28 11:34:19 2010 +0000 @@ -3,7 +3,7 @@ import sys # types translated into "int" -simpletypes = ["int", "gint", "guint", "gboolean", "gpointer", "size_t", "gssize", "time_t"] +simpletypes = ["int", "gint", "guint", "gboolean", "size_t", "gssize", "time_t"] # List "excluded" contains functions that shouldn't be exported via # DBus. If you remove a function from this list, please make sure