Changeset 380 in dev for trunk/abdev/ProjectEditor


Ignore:
Timestamp:
Dec 18, 2007, 2:51:10 AM (16 years ago)
Author:
dai_9181
Message:

Foreachに対応。
ジェネリクスインターフェイスに対応。

Location:
trunk/abdev/ProjectEditor
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/ProjectEditor/Common.h

    r367 r380  
    6666#define APPLICATION_NAME "ActiveBasic 5.0"
    6767#define VERSION_APPLI_NAME APPLICATION_NAME
    68 #define VERSION_STRING "5.00.00 (rev.379)"
     68#define VERSION_STRING "5.00.00 (rev.396)"
    6969
    7070#endif
  • trunk/abdev/ProjectEditor/EndPairCommandComplement.cpp

    r366 r380  
    7171    if(lstrcmpi(temporary,"Enum")==0) return COM_ENUM;
    7272    if(lstrcmpi(temporary,"For")==0) return COM_FOR;
     73    if(lstrcmpi(temporary,"Foreach")==0) return COM_FOR;
    7374    if(lstrcmpi(temporary,"Function")==0) return COM_FUNCTION;
    7475    if(lstrcmpi(temporary,"Namespace")==0) return COM_NAMESPACE;
  • trunk/abdev/ProjectEditor/SubOperation.cpp

    r364 r380  
    512512        if(lstrcmpi(str,"Finally")==0) return -1;
    513513        if(lstrcmpi(str,"For")==0) return COM_FOR;
     514        if(lstrcmpi(str,"Foreach")==0) return -1;
    514515        if(lstrcmpi(str,"Function")==0) return COM_FUNCTION;
    515516    }
  • trunk/abdev/ProjectEditor/TextEditor_KeyEvent.cpp

    r366 r380  
    7070        lstrcmpi(temporary,"Enum")==0||
    7171        lstrcmpi(temporary,"For")==0||
     72        lstrcmpi(temporary,"Foreach")==0||
    7273        lstrcmpi(temporary,"Function")==0||
    7374        lstrcmpi(temporary,"Namespace")==0||
Note: See TracChangeset for help on using the changeset viewer.