Home » Developing U++ » UppHub » Correcting MAPIEx because of Tokenize
Correcting MAPIEx because of Tokenize [message #45122] |
Mon, 07 September 2015 13:13  |
Typhoor
Messages: 14 Registered: October 2012 Location: Erlangen, Germany
|
Promising Member |
|
|
Hi Koldo et al.
I had to correct Tokenize -> Tokenize2() in MAPIEx/MAPIContact.cpp around lines 649, 652, 665 & 672 to get it compiled.
Is this correct? Then you could update it in the real repository.
bool MAPIContact::SetCategories(const String &szCategories) {
#ifdef _WIN32_WCE
return SetPropertyString(OUTLOOK_CATEGORIES, szCategories);
#else
String strCategories = szCategories;
int nCount = 0, nIndex = 0;
if (!strCategories.IsEmpty())
nCount++;
String strCategory = Tokenize2(strCategories, ";", nIndex);
while(strCategory.IsEmpty()) {
nCount++;
strCategory = Tokenize2(strCategories, ";", nIndex);
}
....
Greetings Ralph
|
|
|
|
Goto Forum:
Current Time: Fri Apr 25 12:51:59 CEST 2025
Total time taken to generate the page: 0.00554 seconds
|