ide; fixed goto error in file won't work on files who's path contains parentheses...
authorRejean Loyer <rejean.loyer@gmail.com>
Wed, 5 Jun 2013 01:22:09 +0000 (21:22 -0400)
committerJerome St-Louis <jerome@ecere.com>
Tue, 11 Jun 2013 00:53:15 +0000 (20:53 -0400)
ide/src/project/ProjectView.ec

index f277465..272e216 100644 (file)
@@ -1544,7 +1544,7 @@ class ProjectView : Window
          if(colon && lookForLineNumber)
          {
             char * comma;
-            // MSVS Errors
+#if 0 // MSVS Errors -- todo fix this later
             char * par = RSearchString(line, "(", colon - line, true, false);
             if(par && strstr(par, ")"))
                colon = par;
@@ -1555,6 +1555,7 @@ class ProjectView : Window
                   /*if(*colon == '(')
                      break*/;
             }
+#endif
             lineNumber = atoi(colon + 1);
             /*
             comma = strchr(colon, ',');