Ignore:
Timestamp:
May 12, 2007, 6:31:42 PM (17 years ago)
Author:
dai_9181
Message:

Namespace名前空間のコード補間機能に対応。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ProjectEditor/EndPairCommandComplement.cpp

    r3 r118  
    7272    if(lstrcmpi(temporary,"For")==0) return COM_FOR;
    7373    if(lstrcmpi(temporary,"Function")==0) return COM_FUNCTION;
     74    if(lstrcmpi(temporary,"Namespace")==0) return COM_NAMESPACE;
    7475    if(lstrcmpi(temporary,"Select")==0) return COM_SELECT;
    7576    if(lstrcmpi(temporary,"Sub")==0) return COM_SUB;
     
    108109    if(lstrcmpi(temporary,"EndFunction")==0) return COM_FUNCTION;
    109110    if(lstrcmpi(temporary,"EndIf")==0) return COM_IF;
     111    if(lstrcmpi(temporary,"EndNamespace")==0) return COM_NAMESPACE;
    110112    if(lstrcmpi(temporary,"EndSelect")==0) return COM_SELECT;
    111113    if(lstrcmpi(temporary,"EndSub")==0) return COM_SUB;
     
    138140        case COM_IF:
    139141            lstrcpy(buffer,"End If");
     142            break;
     143        case COM_NAMESPACE:
     144            lstrcpy(buffer,"End Namespace");
    140145            break;
    141146        case COM_SELECT:
Note: See TracChangeset for help on using the changeset viewer.