Mercurial > pidgin
changeset 31077:37c9f6020c35
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 <rekkanoryo@rekkanoryo.org>
author | opensuse-project@opensuse.org |
---|---|
date | Tue, 28 Dec 2010 11:34:19 +0000 |
parents | 25bbabd11c91 |
children | 3a94faf350c7 |
files | COPYRIGHT ChangeLog libpurple/dbus-analyze-functions.py |
diffstat | 3 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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
--- 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
--- 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