Changeset 364 in dev for trunk/abdev/ProjectEditor/SubOperation.cpp
- Timestamp:
- Nov 11, 2007, 3:12:06 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/ProjectEditor/SubOperation.cpp
r350 r364 439 439 case COM_SELECT: 440 440 case COM_SUB: 441 case COM_TRY: 441 442 case COM_TYPE: 442 443 case COM_TYPEDEF: … … 465 466 } 466 467 else if(str[0]=='c'||str[0]=='C'){ 468 if(lstrcmpi(str,"Catch")==0) return -1; 467 469 if(lstrcmpi(str,"Case")==0) return -1; 468 470 if(lstrcmp(str,"Char")==0) return -1; … … 508 510 if(lstrcmp(str,"False")==0) return -1; 509 511 if(lstrcmpi(str,"Field")==0) return COM_FIELD; 512 if(lstrcmpi(str,"Finally")==0) return -1; 510 513 if(lstrcmpi(str,"For")==0) return COM_FOR; 511 514 if(lstrcmpi(str,"Function")==0) return COM_FUNCTION; … … 583 586 if(lstrcmpi(str,"Then")==0) return -1; 584 587 if(lstrcmpi(str,"This")==0) return -1; 588 if(lstrcmpi(str,"Throw")==0) return -1; 585 589 if(lstrcmp(str,"True")==0) return -1; 590 if(lstrcmp(str,"Try")==0) return COM_TRY; 586 591 if(lstrcmpi(str,"Type")==0) return COM_TYPE; 587 592 if(lstrcmpi(str,"TypeDef")==0) return COM_TYPEDEF;
Note:
See TracChangeset
for help on using the changeset viewer.