GNOME Bugzilla – Bug 655920
Rebase PhoneDetails.numbers upon an AbstractFieldDetails-derived class
Last modified: 2011-08-12 16:01:55 UTC
Proposed API changes: - public abstract Set<FieldDetails> phone_numbers { get; set; } - public abstract Set<PhoneFieldDetails> phone_numbers { get; set; } - public static bool numbers_equal (string number1, string number2) + public override bool equal (AbstractFieldDetails<PhoneFieldDetails> that)
Created attachment 193491 [details] [review] Add PhoneFieldDetails Bonus patch and relevant patch from branch: http://cgit.collabora.com/git/user/treitter/folks.git/log/?h=bgo655920-phone-field-details
Review of attachment 193491 [details] [review]: Looks great. I spotted a few small typos, but they can be fixed before committing. ::: folks/phone-details.vala @@ +25,2 @@ /** + * Object representing a note that can have some parameters associated with it. s/note/phone number/ @@ +178,3 @@ + * The phone numbers of the contact. + * + * A list of phone numbers associated to the contact. s/associated to/associated with/ ::: tests/tracker/match-phone-number.vala @@ +174,3 @@ (owned) val); val = Value (typeof (Set<FieldDetails>)); s/FieldDetails/PhoneFieldDetails/ @@ +190,3 @@ (owned) val); val = Value (typeof (Set<FieldDetails>)); s/FieldDetails/PhoneFieldDetails/
commit 85d4de54bd7d7e83da6dfc3444dbddf8afe0a016 Author: Travis Reitter <travis.reitter@collabora.co.uk> Date: Tue Aug 9 15:59:16 2011 +0200 Rebase PhoneDetails.phone_numbers upon PhoneFieldDetails Closes: bgo#655920 - Rebase PhoneDetails.phone_numbers upon an AbstractFieldDetails-derived class