# HG changeset patch # User Elliott Sales de Andrade # Date 1274920617 0 # Node ID cb74b2877ea7ff5c6e0fff815583267eec4f129e # Parent 7f564cf26ea36af45419f1a7213a34aafb413e46 Fix D-Bus version of purple_xfer_get_thumbnail. I don't think this was a real problem, except for the warning. diff -r 7f564cf26ea3 -r cb74b2877ea7 libpurple/dbus-analyze-functions.py --- a/libpurple/dbus-analyze-functions.py Wed May 26 23:20:18 2010 +0000 +++ b/libpurple/dbus-analyze-functions.py Thu May 27 00:36:57 2010 +0000 @@ -170,7 +170,7 @@ return self.inputpurplestructure(type, name) # special case for *_get_data functions, be careful here... - elif (type[0] == "size_t") and (name == "len"): + elif (type[0] == "size_t" or type[0] == "gsize") and name == "len": return self.inputgetdata(type, name) # unknown pointers are always replaced with NULL