Changeset 118 in dev
- Timestamp:
- May 12, 2007, 6:31:42 PM (18 years ago)
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/commandvalue.h
r64 r118 93 93 #define COM_ENUM 0x11B1 94 94 #define COM_ABSTRACT 0x11B2 95 #define COM_NAMESPACE 0x11B3 95 96 96 97 //ウィンドウ制御 -
BasicCompiler_Common/common.h
r117 r118 47 47 48 48 #ifdef _AMD64_ 49 #define VER_INFO "(x64) β rev.24 5"49 #define VER_INFO "(x64) β rev.246" 50 50 #else 51 #define VER_INFO "β rev.24 5"51 #define VER_INFO "β rev.246" 52 52 #endif 53 53 -
ProjectEditor/Common.h
r99 r118 66 66 #define APPLICATION_NAME "ActiveBasic 5.0" 67 67 #define VERSION_APPLI_NAME APPLICATION_NAME 68 #define VERSION_STRING "5.00.00 β rev.2 18"68 #define VERSION_STRING "5.00.00 β rev.245" 69 69 70 70 #endif -
ProjectEditor/EndPairCommandComplement.cpp
r3 r118 72 72 if(lstrcmpi(temporary,"For")==0) return COM_FOR; 73 73 if(lstrcmpi(temporary,"Function")==0) return COM_FUNCTION; 74 if(lstrcmpi(temporary,"Namespace")==0) return COM_NAMESPACE; 74 75 if(lstrcmpi(temporary,"Select")==0) return COM_SELECT; 75 76 if(lstrcmpi(temporary,"Sub")==0) return COM_SUB; … … 108 109 if(lstrcmpi(temporary,"EndFunction")==0) return COM_FUNCTION; 109 110 if(lstrcmpi(temporary,"EndIf")==0) return COM_IF; 111 if(lstrcmpi(temporary,"EndNamespace")==0) return COM_NAMESPACE; 110 112 if(lstrcmpi(temporary,"EndSelect")==0) return COM_SELECT; 111 113 if(lstrcmpi(temporary,"EndSub")==0) return COM_SUB; … … 138 140 case COM_IF: 139 141 lstrcpy(buffer,"End If"); 142 break; 143 case COM_NAMESPACE: 144 lstrcpy(buffer,"End Namespace"); 140 145 break; 141 146 case COM_SELECT: -
ProjectEditor/ParameterHint.cpp
r24 r118 107 107 else if(CmdValue==COM_MKDIR) lstrcpy(MethodCheckInfo.msg,"MkDir directory$"); 108 108 else if(CmdValue==COM_MSGBOX) lstrcpy(MethodCheckInfo.msg,"MsgBox hWnd, String$, [Title$], [BoxType], [retAns]"); 109 else if(CmdValue==COM_NAMESPACE) lstrcpy(MethodCheckInfo.msg,"Namespace namespaceStr"); 109 110 else if(CmdValue==COM_NEXT) lstrcpy(MethodCheckInfo.msg,"Next"); 110 111 else if(CmdValue==COM_OPEN) lstrcpy(MethodCheckInfo.msg,"Open filename$ [For Input/Output/Append] As number"); -
ProjectEditor/SubOperation.cpp
r117 r118 431 431 case COM_INTERFACE: 432 432 case COM_LOOP: 433 case COM_NAMESPACE: 433 434 case COM_NEXT: 434 435 case COM_PRIVATE: … … 539 540 } 540 541 else if(str[0]=='n'||str[0]=='N'){ 541 if(lstrcmpi(str,"Namespace")==0) return -1;542 if(lstrcmpi(str,"Namespace")==0) return COM_NAMESPACE; 542 543 if(lstrcmpi(str,"Next")==0) return COM_NEXT; 543 544 if(lstrcmpi(str,"New")==0) return -1; -
ProjectEditor/TextEditor_KeyEvent.cpp
r24 r118 71 71 lstrcmpi(temporary,"For")==0|| 72 72 lstrcmpi(temporary,"Function")==0|| 73 lstrcmpi(temporary,"Namespace")==0|| 73 74 lstrcmpi(temporary,"Override")==0|| 74 75 lstrcmpi(temporary,"Sub")==0|| … … 126 127 lstrcmpi(temporary,"Next")==0|| 127 128 lstrcmpi(temporary,"EndFunction")==0|| 129 lstrcmpi(temporary,"EndNamespace")==0|| 128 130 lstrcmpi(temporary,"EndSub")==0|| 129 131 lstrcmpi(temporary,"EndType")==0||
Note:
See TracChangeset
for help on using the changeset viewer.