Changeset 37 in dev
- Timestamp:
 - Jan 21, 2007, 5:04:58 PM (19 years ago)
 - Files:
 - 
      
- 2 edited
 
- 
          
  BasicCompiler_Common/Intermediate_Step2.cpp (modified) (2 diffs)
 - 
          
  ProjectEditor/ProjectEditor.cpp (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
BasicCompiler_Common/Intermediate_Step2.cpp
r27 r37 422 422 } 423 423 424 bool isPare = false; 424 425 for(i=0;;i++){ 425 426 if(Command[i]==' '||Command[i]=='\t'||Command[i]=='('||Command[i]=='\"'||Command[i]=='@'||Command[i]=='-'){ 426 427 com[i]=0; 427 428 while(Command[i]==' '||Command[i]=='\t') i++; 429 if( Command[i] == '(' ) isPare = true; 428 430 break; 429 431 } … … 453 455 lstrcmpi(com,"PRINT")==0|| 454 456 lstrcmpi(com,"RANDOMIZE")==0|| 455 //lstrcmpi(com,"WRITE")==0|| TODO: Trace.Writeとの重複が未完成457 ( lstrcmpi(com,"WRITE")==0 && isPare == false )|| 456 458 lstrcmpi(com,"MSGBOX")==0|| 457 459 lstrcmpi(com,"WINDOW")==0||  - 
      
ProjectEditor/ProjectEditor.cpp
r24 r37 1011 1011 i2=SendMessage(hDocCombo,CB_FINDSTRINGEXACT,0,(long)MdiInfo[WndNum].title); 1012 1012 SendMessage(hDocCombo,CB_DELETESTRING,i2,0); 1013 InvalidateRect(hDocCombo,NULL,1);1014 1013 1015 1014 //タブコントロールからアイテムを消去  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  