diff options
author | Philip Withnall <philip.withnall@collabora.co.uk> | 2011-04-19 22:13:01 +0100 |
---|---|---|
committer | Philip Withnall <philip.withnall@collabora.co.uk> | 2011-04-23 21:59:59 +0100 |
commit | 6510a5cee80afafeefd507387455c6ebcb66a880 (patch) | |
tree | 282faa25584c067de44484fc4b2608eee6ad0bfb /tools | |
parent | 1d035bd4d12e61b7809b5db251993306f6c170ae (diff) |
Change PhoneDetails.phone_numbers to be a Set<FieldDetails>
Helps: bgo#640092
Diffstat (limited to 'tools')
-rw-r--r-- | tools/inspect/utils.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/inspect/utils.vala b/tools/inspect/utils.vala index fd20745..c25ab23 100644 --- a/tools/inspect/utils.vala +++ b/tools/inspect/utils.vala @@ -320,7 +320,8 @@ private class Folks.Inspect.Utils output_string += " }"; return output_string; } - else if (prop_name == "email-addresses") + else if (prop_name == "email-addresses" || + prop_name == "phone-numbers") { output_string = "{ "; bool first = true; @@ -340,8 +341,7 @@ private class Folks.Inspect.Utils return output_string; } - else if (prop_name == "urls" || - prop_name == "phone-numbers") + else if (prop_name == "urls") { output_string = "{ "; bool first = true; |