A problem on code completion for UTF8 characters

General questions regarding the usage of CodeLite
plainzw
CodeLite Curious
Posts: 4
Joined: Thu May 24, 2012 7:08 am
Genuine User: Yes
IDE Question: C++
Contact:

A problem on code completion for UTF8 characters

Post 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!
User avatar
eranif
CodeLite Plugin
Posts: 6372
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: A problem on code completion for UTF8 characters

Post 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
Make sure you have read the HOW TO POST thread
plainzw
CodeLite Curious
Posts: 4
Joined: Thu May 24, 2012 7:08 am
Genuine User: Yes
IDE Question: C++
Contact:

Re: A problem on code completion for UTF8 characters

Post 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.
User avatar
eranif
CodeLite Plugin
Posts: 6372
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: A problem on code completion for UTF8 characters

Post by eranif »

Can you please post it as an attachment? Copy/Paste will ruin the original text

Eran
Make sure you have read the HOW TO POST thread
plainzw
CodeLite Curious
Posts: 4
Joined: Thu May 24, 2012 7:08 am
Genuine User: Yes
IDE Question: C++
Contact:

Re: A problem on code completion for UTF8 characters

Post by plainzw »

OK,here is the attachment.
You do not have the required permissions to view the files attached to this post.
Post Reply