Changeset 117 in dev for ProjectEditor/SubOperation.cpp


Ignore:
Timestamp:
May 12, 2007, 5:31:53 PM (17 years ago)
Author:
dai_9181
Message:

String/ObjectをSystem名前空間に依存しない特殊型として扱うようにした

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ProjectEditor/SubOperation.cpp

    r107 r117  
    545545    }
    546546    else if(str[0]=='o'||str[0]=='O'){
     547        if(lstrcmp(str,"Object")==0) return -1;
    547548        if(lstrcmpi(str,"Open")==0) return COM_OPEN;
    548549        if(lstrcmpi(str,"Operator")==0) return -1;
     
    572573        if(lstrcmp(str,"Single")==0) return -1;
    573574        if(lstrcmpi(str,"Sleep")==0) return COM_SLEEP;
    574         if(lstrcmpi(str,"Static")==0) return -1;
     575        if(lstrcmp(str,"String")==0) return -1;
    575576        if(lstrcmpi(str,"Sub")==0) return COM_SUB;
    576577        if(lstrcmpi(str,"Super")==0) return -1;
Note: See TracChangeset for help on using the changeset viewer.