コード例 #1
0
ファイル: ucommand.pas.py プロジェクト: overdhose/PlantStudio
 def fillListWithRedoableStrings(self, aList):
     i = 0
     
     if aList == None:
         return
     if self.lastDoneCommandIndex < (self.commands.Count - 1):
         for i in range(self.lastDoneCommandIndex + 1, self.commands.Count):
             aList.Add(usupport.capitalize(self.command(i).description()))
コード例 #2
0
ファイル: ucommand.pas.py プロジェクト: overdhose/PlantStudio
 def fillListWithUndoableStrings(self, aList):
     i = 0
     
     if aList == None:
         return
     if self.lastDoneCommandIndex >= 0:
         for i in range(self.lastDoneCommandIndex, 0 + 1):
             aList.Add(usupport.capitalize(self.command(i).description()))