diff --git a/ChangeLog b/ChangeLog index b387275..e77a74a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-04-08 German Arias + + * Modules/Editors/ProjectCenter/PCEditorView.m (-insertText:): Add a + comment for last commit. + 2014-04-06 German Arias * Headers/ProjectCenter/PCProjectLauncher.h: Add new variable diff --git a/Modules/Editors/ProjectCenter/PCEditorView.m b/Modules/Editors/ProjectCenter/PCEditorView.m index c7cd364..9489e52 100644 --- a/Modules/Editors/ProjectCenter/PCEditorView.m +++ b/Modules/Editors/ProjectCenter/PCEditorView.m @@ -495,6 +495,11 @@ static int ComputeIndentingOffset(NSString * string, unsigned int start) - (void)insertText:text { + /* NOTE: On Windows we ensure to get a string in UTF-8 encoding. The problem + * is the highlighter that don't use a consistent codification causing a + * problem on Windows platform. Anyway, the plugin for Gemas editor works + * better and don't show this problem. + */ if ([text isKindOfClass:[NSString class]]) { NSString * string = text;