Patch #2081 2007-06-27 22:27

pauliusz

Project properties -> line counter fix
Download
2081-Project_proper.patch (507 bytes)
Category
Application::Bugfix
Status
Accepted
Close date
2007-06-28 09:56
Assigned to
biplab
Index: src/sdk/projectfileoptionsdlg.cpp
===================================================================
--- src/sdk/projectfileoptionsdlg.cpp    (revision 4191)
+++ src/sdk/projectfileoptionsdlg.cpp    (working copy)
@@ -125,7 +125,7 @@
                 long int &comment_lines, long int &empty_lines, long int &total_lines)
 {
     wxTextFile file;
-    if (file.Open(filename.GetFullPath()))
+    if (file.Open(filename.GetFullPath(), wxConvFile))
     {
         bool multi_line_comment = false;
         total_lines += file.GetLineCount();
pauliusz 2007-06-27 22:29

The similar bug that was fixed in revision 4172