Removes some more properties.

cusax-fix
Damian Minkov 13 years ago
parent 48200f250c
commit 744db6582d

@ -324,7 +324,6 @@ DEFINE_ABPERSON_PROPERTY_GETTER(kABOtherDateComponentsProperty)
DEFINE_ABPERSON_PROPERTY_GETTER(kABRelatedNamesProperty)
DEFINE_ABPERSON_PROPERTY_GETTER(kABDepartmentProperty)
DEFINE_ABPERSON_PROPERTY_GETTER(kABNoteProperty)
DEFINE_ABPERSON_PROPERTY_GETTER(kABSocialProfileProperty)
DEFINE_ABPERSON_PROPERTY_GETTER(kABTitleProperty)
DEFINE_ABPERSON_PROPERTY_GETTER(kABSuffixProperty)
@ -355,7 +354,6 @@ DEFINE_ABLABEL_PROPERTY_GETTER(kABAssistantLabel)
DEFINE_ABLABEL_PROPERTY_GETTER(kABManagerLabel)
DEFINE_ABLABEL_PROPERTY_GETTER(kABPhoneWorkLabel)
DEFINE_ABLABEL_PROPERTY_GETTER(kABPhoneHomeLabel)
DEFINE_ABLABEL_PROPERTY_GETTER(kABPhoneiPhoneLabel)
DEFINE_ABLABEL_PROPERTY_GETTER(kABPhoneMobileLabel)
DEFINE_ABLABEL_PROPERTY_GETTER(kABPhoneMainLabel)
DEFINE_ABLABEL_PROPERTY_GETTER(kABPhoneHomeFAXLabel)

@ -63,7 +63,6 @@ public class MacOSXAddrBookContactQuery
kABRelatedNamesProperty(),
kABDepartmentProperty(),
kABNoteProperty(),
kABSocialProfileProperty(),
kABTitleProperty(),
kABSuffixProperty()
};
@ -242,23 +241,17 @@ public class MacOSXAddrBookContactQuery
*/
private static final int kABNoteProperty = 26;
/**
* The index of the <tt>kABSocialProfileProperty</tt> <tt>ABPerson</tt>
* property in {@link #ABPERSON_PROPERTIES}.
*/
private static final int kABSocialProfileProperty = 27;
/**
* The index of the <tt>kABTitleProperty</tt> <tt>ABPerson</tt>
* property in {@link #ABPERSON_PROPERTIES}.
*/
private static final int kABTitleProperty = 28;
private static final int kABTitleProperty = 27;
/**
* The index of the <tt>kABSuffixProperty</tt> <tt>ABPerson</tt>
* property in {@link #ABPERSON_PROPERTIES}.
*/
private static final int kABSuffixProperty = 29;
private static final int kABSuffixProperty = 28;
/**
* The regex which matches the superfluous parts of an <tt>ABMultiValue</tt>
@ -425,7 +418,6 @@ private ContactDetail createContactDetail(
case kABOtherDatesProperty:
case kABRelatedNamesProperty:
case kABNoteProperty:
case kABSocialProfileProperty:
case kABTitleProperty:
case kABSuffixProperty:
c = ContactDetail.Category.Personal;
@ -939,13 +931,6 @@ else if (value instanceof Object[])
*/
private static native long kABNoteProperty();
/**
* Gets the value of the <tt>kABSocialProfileProperty</tt> constant.
*
* @return the value of the <tt>kABSocialProfileProperty</tt> constant
*/
private static native long kABSocialProfileProperty();
/**
* Gets the value of the <tt>kABTitleProperty</tt> constant.
*

Loading…
Cancel
Save