Can I change a tasks pane displayed encoding? I wrote my tasks in russian and after searching via pane I got unreadable characters.
Used codepage in files: cp1251
Windows 7
CodeLite 4.0.5589
Encoding in Tasks Pane
-
- CodeLite Enthusiast
- Posts: 30
- Joined: Tue Apr 03, 2012 1:18 am
- Genuine User: Yes
- IDE Question: C++
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Encoding in Tasks Pane
Hi,
unfortunately no. It is hard coded to
I fixed it in trunk by adding a little drop drop down for encoding selection
Eran
unfortunately no. It is hard coded to
Code: Select all
data.SetEncoding(wxT("ISO-8859-1"));
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Enthusiast
- Posts: 30
- Joined: Tue Apr 03, 2012 1:18 am
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Encoding in Tasks Pane
Now it works, thanks, but it would be good to replace this option to somewhere in Settings without damage to UI usability.
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Encoding in Tasks Pane
Since Tasks is using the 'Find In Files' it would be logical to use the encoding inside the Find In Files dialog, but it also makes it harder forsoMan wrote:damage to UI usability
users to find this settings. Placing it in a visible location - makes it easier IMO
Eran
Make sure you have read the HOW TO POST thread