Changeset 57 in dev
- Timestamp:
- Feb 16, 2007, 2:15:46 AM (18 years ago)
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/Class.cpp
r56 r57 727 727 //コピーコンストラクタ 728 728 if(psi->ParmNum==1){ 729 if(psi->pParmInfo[ 1].type==DEF_OBJECT&&730 psi->pParmInfo[ 1].u.pobj_c==pobj_c) fConstructor=2;729 if(psi->pParmInfo[0].type==DEF_OBJECT&& 730 psi->pParmInfo[0].u.pobj_c==pobj_c) fConstructor=2; 731 731 } 732 732 -
BasicCompiler_Common/Variable.cpp
r55 r57 1096 1096 1097 1097 if( pTypeInfo->type == DEF_OBJECT && InitBuf[0] != '\0' && InitBuf[0] != '[' && isRef == false ){ 1098 lstrcpy( ConstractParameter, InitBuf ); 1099 InitBuf[0] = 0; 1098 if( pTypeInfo->u.pobj_Class->GetCopyConstructorMethod() ){ 1099 //オブジェクトでコピーコンストラクタが存在するとき 1100 lstrcpy( ConstractParameter, InitBuf ); 1101 InitBuf[0] = 0; 1102 } 1100 1103 } 1101 1104 -
BasicCompiler_Common/common.h
r56 r57 43 43 44 44 #ifdef _AMD64_ 45 #define VER_INFO "β1 1(x64)"45 #define VER_INFO "β12 (x64)" 46 46 #else 47 #define VER_INFO "β1 1"47 #define VER_INFO "β12" 48 48 #endif 49 49 -
ProjectEditor/Common.h
r55 r57 62 62 #define APPLICATION_NAME "ActiveBasic 5.0" 63 63 #define VERSION_APPLI_NAME APPLICATION_NAME 64 #define VERSION_STRING "5.00.00 β1 1"64 #define VERSION_STRING "5.00.00 β12" 65 65 66 66 #endif -
ProjectEditor/SubOperation.cpp
r41 r57 525 525 } 526 526 else if(str[0]=='s'||str[0]=='S'){ 527 if(lstrcmpi(str,"SByte")==0) return -1; 527 528 if(lstrcmpi(str,"Select")==0) return COM_SELECT; 528 529 if(lstrcmpi(str,"SelectCase")==0) return COM_SELECT;
Note:
See TracChangeset
for help on using the changeset viewer.