diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2011-11-21 17:15:02 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:14:17 +0100 |
commit | 432df3349f7df7d00d0dbc17eacdfc46965b372b (patch) | |
tree | a603b2b02affa8eedaf492dc4b7fc690c89be0e6 | |
parent | f7390c328bfb8690802e317f503a5bff5116fd84 (diff) |
api,dbus: fix signature of the Scan() method in the 3GPP DBus interface
The Scan() method returns an array of dictionaries, where each dictionary is
defined by a string key plus a variant data (not a string data). This is to
handle the "status" and "access-tech" entries, which are given as unsigned
integers.
-rw-r--r-- | new/org.freedesktop.ModemManager1.Modem.3gpp.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/new/org.freedesktop.ModemManager1.Modem.3gpp.xml b/new/org.freedesktop.ModemManager1.Modem.3gpp.xml index 4c8609f8..ec23465f 100644 --- a/new/org.freedesktop.ModemManager1.Modem.3gpp.xml +++ b/new/org.freedesktop.ModemManager1.Modem.3gpp.xml @@ -25,7 +25,7 @@ </tp:docstring> <annotation name="org.freedesktop.DBus.GLib.Async" value=""/> <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_3gpp_modem_scan"/> - <arg name="results" type="aa{ss}" direction="out"> + <arg name="results" type="aa{sv}" direction="out"> <tp:docstring> <p>Found networks. It's an array of dictionaries (strings for both keys and values) with each array element describing a mobile network |