Ignore:
Timestamp:
Jun 27, 2007, 2:41:17 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/src/ProcedureImpl.cpp

    r195 r198  
    131131            }
    132132
    133             Compiler::StringToType( temporary, type );
     133            compiler.StringToType( temporary, type );
    134134
    135135            if( type.IsNull() ){
     
    259259                }
    260260
    261                 Compiler::StringToType( temporary, type );
     261                compiler.StringToType( temporary, type );
    262262
    263263                if( type.IsNull() ){
     
    328328                    temporary[i3]=sourceOfParams[i2];
    329329                }
    330                 Compiler::StringToType( temporary, this->returnType );
     330                compiler.StringToType( temporary, this->returnType );
    331331                if( this->returnType.IsNull() ) SmoothieException::Throw(3,temporary,nowLine);
    332332
     
    514514            }
    515515
    516             Compiler::StringToType( temporary, type );
     516            compiler.StringToType( temporary, type );
    517517
    518518            if( type.IsNull() ){
     
    568568                    temporary[i3]=sourceOfParams[i2];
    569569                }
    570                 Compiler::StringToType( temporary, this->returnType );
     570                compiler.StringToType( temporary, this->returnType );
    571571                if( this->returnType.IsNull() ) SmoothieException::Throw(3,temporary,nowLine);
    572572
     
    685685            }
    686686
    687             Compiler::StringToType( temporary, type );
     687            compiler.StringToType( temporary, type );
    688688
    689689            if( type.IsNull() ){
     
    739739                    temporary[i3]=sourceOfParams[i2];
    740740                }
    741                 Compiler::StringToType( temporary, this->returnType );
     741                compiler.StringToType( temporary, this->returnType );
    742742                if( this->returnType.IsNull() ) SmoothieException::Throw(3,temporary,nowLine);
    743743
Note: See TracChangeset for help on using the changeset viewer.