1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

patch from chris w. dealing with CConvention

This commit is contained in:
Alain Magloire 2004-03-09 21:45:12 +00:00
parent 8174ed6882
commit f490ac49d2
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,11 @@
2004-03-09 Alain Magloire
Patch from Chris Wiebe
CConventions.validateClassName() where the
scope resolution operator :: is parsed incorrectly.
* src/org/eclipse/cdt/core/CConventions.java
2004-03-08 Alain Magloire 2004-03-08 Alain Magloire
In the Editor if the changes are discarded i.e. In the Editor if the changes are discarded i.e.

View file

@ -95,7 +95,7 @@ public class CConventions {
if (!status.isOK()) { if (!status.isOK()) {
return status; return status;
} }
String type = name.substring(index + 1).trim(); String type = name.substring(index + scopeResolutionOperator.length()).trim();
scannedID = type.toCharArray(); scannedID = type.toCharArray();
} }