Changeset 366 in dev for trunk/abdev/ProjectEditor


Ignore:
Timestamp:
Nov 11, 2007, 6:38:52 PM (16 years ago)
Author:
dai_9181
Message:

Tryスコープのコード補完機能のバグを修正(EndTryコード補間が過剰に行われていた)。
コンパイラのログ生成処理をきった。

Location:
trunk/abdev/ProjectEditor
Files:
3 edited

Legend:

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

    r364 r366  
    6666#define APPLICATION_NAME "ActiveBasic 5.0"
    6767#define VERSION_APPLI_NAME APPLICATION_NAME
    68 #define VERSION_STRING "5.00.00 (rev.375)"
     68#define VERSION_STRING "5.00.00 (rev.378)"
    6969
    7070#endif
  • trunk/abdev/ProjectEditor/EndPairCommandComplement.cpp

    r364 r366  
    113113    if(lstrcmpi(temporary,"EndSelect")==0) return COM_SELECT;
    114114    if(lstrcmpi(temporary,"EndSub")==0) return COM_SUB;
     115    if(lstrcmpi(temporary,"EndTry")==0) return COM_TRY;
    115116    if(lstrcmpi(temporary,"EndType")==0) return COM_TYPE;
    116117    if(lstrcmpi(temporary,"Wend")==0) return COM_WHILE;
  • trunk/abdev/ProjectEditor/TextEditor_KeyEvent.cpp

    r364 r366  
    134134        lstrcmpi(temporary,"EndSub")==0||
    135135        lstrcmpi(temporary,"EndType")==0||
     136        lstrcmpi(temporary,"EndTry")==0||
    136137        lstrcmpi(temporary,"Wend")==0||
    137138        lstrcmpi(temporary,"EndWith")==0||
Note: See TracChangeset for help on using the changeset viewer.