diff options
author | Damian Minkov <damencho@jitsi.org> | 2013-02-15 10:20:18 +0000 |
---|---|---|
committer | Damian Minkov <damencho@jitsi.org> | 2013-02-15 10:20:18 +0000 |
commit | 744db6582da3fb56199c460d1c92e42177cbf6a9 (patch) | |
tree | af10d6835284946e876df95e4e6093339549c25e | |
parent | 48200f250cfafd37a2c5641081f035c8d070b84c (diff) | |
download | jitsi-744db6582da3fb56199c460d1c92e42177cbf6a9.zip jitsi-744db6582da3fb56199c460d1c92e42177cbf6a9.tar.gz jitsi-744db6582da3fb56199c460d1c92e42177cbf6a9.tar.bz2 |
Removes some more properties.
-rwxr-xr-x | lib/native/mac/libjmacosxaddrbook.jnilib | bin | 81088 -> 80760 bytes | |||
-rw-r--r-- | src/native/addrbook/macosx/net_java_sip_communicator_plugin_addrbook_macosx_MacOSXAddrBookContactQuery.m | 2 | ||||
-rw-r--r-- | src/net/java/sip/communicator/plugin/addrbook/macosx/MacOSXAddrBookContactQuery.java | 19 |
3 files changed, 2 insertions, 19 deletions
diff --git a/lib/native/mac/libjmacosxaddrbook.jnilib b/lib/native/mac/libjmacosxaddrbook.jnilib Binary files differindex 4e41661..2d7b70e 100755 --- a/lib/native/mac/libjmacosxaddrbook.jnilib +++ b/lib/native/mac/libjmacosxaddrbook.jnilib diff --git a/src/native/addrbook/macosx/net_java_sip_communicator_plugin_addrbook_macosx_MacOSXAddrBookContactQuery.m b/src/native/addrbook/macosx/net_java_sip_communicator_plugin_addrbook_macosx_MacOSXAddrBookContactQuery.m index 83308ca..f1f7915 100644 --- a/src/native/addrbook/macosx/net_java_sip_communicator_plugin_addrbook_macosx_MacOSXAddrBookContactQuery.m +++ b/src/native/addrbook/macosx/net_java_sip_communicator_plugin_addrbook_macosx_MacOSXAddrBookContactQuery.m @@ -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)
diff --git a/src/net/java/sip/communicator/plugin/addrbook/macosx/MacOSXAddrBookContactQuery.java b/src/net/java/sip/communicator/plugin/addrbook/macosx/MacOSXAddrBookContactQuery.java index 89ab98c..96b05e7 100644 --- a/src/net/java/sip/communicator/plugin/addrbook/macosx/MacOSXAddrBookContactQuery.java +++ b/src/net/java/sip/communicator/plugin/addrbook/macosx/MacOSXAddrBookContactQuery.java @@ -63,7 +63,6 @@ public class MacOSXAddrBookContactQuery kABRelatedNamesProperty(),
kABDepartmentProperty(),
kABNoteProperty(),
- kABSocialProfileProperty(),
kABTitleProperty(),
kABSuffixProperty()
};
@@ -243,22 +242,16 @@ 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 @@ public class MacOSXAddrBookContactQuery case kABOtherDatesProperty:
case kABRelatedNamesProperty:
case kABNoteProperty:
- case kABSocialProfileProperty:
case kABTitleProperty:
case kABSuffixProperty:
c = ContactDetail.Category.Personal;
@@ -940,13 +932,6 @@ public class MacOSXAddrBookContactQuery 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.
*
* @return the value of the <tt>kABTitleProperty</tt> constant
|