Page 1 of 1

A problem on code completion for UTF8 characters

Posted: Tue Apr 02, 2013 6:11 pm
by plainzw
Hi,
I installed the new CL 5.0 and CL 5.1 On windows, Then the doxgen document window besides the code complete list couldn't show East Asian characters. On CL 4.1.5770 it works fine. I'm using UTF-8 Encoding.
What's the problem?
Thanks!

Re: A problem on code completion for UTF8 characters

Posted: Tue Apr 02, 2013 6:17 pm
by eranif
Can you please provide an example source file with such comments?

FYI: the tooltip code was changed from 4.1 -> 5.1

Eran

Re: A problem on code completion for UTF8 characters

Posted: Tue Apr 02, 2013 6:37 pm
by plainzw
Sure.The sample code is here:

Code: Select all

#include <stdio.h>


/**
 * \brief 测试两数之和
 * \param a 参数a
 * \param b 参数b
 * \return a与b之和
 */
int TestSum(int a, int b)
{
	return a + b;
}

int main(int argc, char **argv)
{
	printf("hello world\n");
	return 0;
}
The doxgen document only show the ascii characters.

Re: A problem on code completion for UTF8 characters

Posted: Tue Apr 02, 2013 7:23 pm
by eranif
Can you please post it as an attachment? Copy/Paste will ruin the original text

Eran

Re: A problem on code completion for UTF8 characters

Posted: Tue Apr 02, 2013 7:56 pm
by plainzw
OK,here is the attachment.