Changeset 335 in dev for trunk/abdev/BasicCompiler32
- Timestamp:
- Sep 28, 2007, 3:27:35 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_Func.cpp
r334 r335 296 296 userProc.Using(); 297 297 } 298 void Opcode_Create SimpleDelegate( const CClass &dgClass, const char *methodInstanceName, const UserProc &userProc )298 void Opcode_CreateDelegate( const CClass &dgClass, const char *methodInstanceName, const UserProc &userProc ) 299 299 { 300 300 ///////////////////////////////////////////////////////////////// … … 401 401 { 402 402 // デリゲートのとき 403 Opcode_Create SimpleDelegate( baseType.GetClass(), name, *pUserProc );403 Opcode_CreateDelegate( baseType.GetClass(), name, *pUserProc ); 404 404 } 405 405 resultType = baseType;
Note:
See TracChangeset
for help on using the changeset viewer.