diff options
author | Vincent Lucas <chenzo@jitsi.org> | 2013-05-15 15:54:54 +0200 |
---|---|---|
committer | Vincent Lucas <chenzo@jitsi.org> | 2013-05-15 15:54:54 +0200 |
commit | 2bfae8696e32a5d9b00188273447cf9ab8b567b9 (patch) | |
tree | ee57b33a2cd6a7158818fc495e1964c5c03a8043 /src/native/addrbook/msoutlook | |
parent | 2242162742ad6622e7abc367ea4d3cf673641d29 (diff) | |
download | jitsi-2bfae8696e32a5d9b00188273447cf9ab8b567b9.zip jitsi-2bfae8696e32a5d9b00188273447cf9ab8b567b9.tar.gz jitsi-2bfae8696e32a5d9b00188273447cf9ab8b567b9.tar.bz2 |
Corrects getting and setting work postal address without conflicting with the "this is the mailing address" checkbox.
Diffstat (limited to 'src/native/addrbook/msoutlook')
-rw-r--r-- | src/native/addrbook/msoutlook/MsOutlookAddrBookContactQuery.cxx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/native/addrbook/msoutlook/MsOutlookAddrBookContactQuery.cxx b/src/native/addrbook/msoutlook/MsOutlookAddrBookContactQuery.cxx index 3abb648..daa7670 100644 --- a/src/native/addrbook/msoutlook/MsOutlookAddrBookContactQuery.cxx +++ b/src/native/addrbook/msoutlook/MsOutlookAddrBookContactQuery.cxx @@ -1501,6 +1501,26 @@ int MsOutlookAddrBookContactQuery_IMAPIProp_1SetPropString { updateValue.ulPropTag = 0x8046001F; } + else if(propId == 0x8045) // business address - street + { + updateValue.ulPropTag = 0x805F001F; + } + else if(propId == 0x8046) // business address - city + { + updateValue.ulPropTag = 0x8060001F; + } + else if(propId == 0x8047) // business address - state + { + updateValue.ulPropTag = 0x8061001F; + } + else if(propId == 0x8048) // business address - zip + { + updateValue.ulPropTag = 0x8062001F; + } + else if(propId == 0x8049) // business address - country + { + updateValue.ulPropTag = 0x8063001F; + } else { updateValue.ulPropTag = PROP_TAG(PT_UNICODE, propId); |