Changeset 37 in dev


Ignore:
Timestamp:
Jan 21, 2007, 5:04:58 PM (17 years ago)
Author:
dai_9181
Message:

ドキュメントを閉じたときのチラツキを解消。
Write命令とWriteメソッドを切り分けられるようにした。

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/Intermediate_Step2.cpp

    r27 r37  
    422422    }
    423423
     424    bool isPare = false;
    424425    for(i=0;;i++){
    425426        if(Command[i]==' '||Command[i]=='\t'||Command[i]=='('||Command[i]=='\"'||Command[i]=='@'||Command[i]=='-'){
    426427            com[i]=0;
    427428            while(Command[i]==' '||Command[i]=='\t') i++;
     429            if( Command[i] == '(' ) isPare = true;
    428430            break;
    429431        }
     
    453455        lstrcmpi(com,"PRINT")==0||
    454456        lstrcmpi(com,"RANDOMIZE")==0||
    455         //lstrcmpi(com,"WRITE")==0|| TODO: Trace.Writeとの重複が未完成
     457        ( lstrcmpi(com,"WRITE")==0 && isPare == false )||
    456458        lstrcmpi(com,"MSGBOX")==0||
    457459        lstrcmpi(com,"WINDOW")==0||
  • ProjectEditor/ProjectEditor.cpp

    r24 r37  
    10111011    i2=SendMessage(hDocCombo,CB_FINDSTRINGEXACT,0,(long)MdiInfo[WndNum].title);
    10121012    SendMessage(hDocCombo,CB_DELETESTRING,i2,0);
    1013     InvalidateRect(hDocCombo,NULL,1);
    10141013
    10151014    //タブコントロールからアイテムを消去
Note: See TracChangeset for help on using the changeset viewer.