コード例 #1
0
ファイル: frame.py プロジェクト: chrisbiggar/shiny-light
 def teardown(self):
     self.content.teardown()
     self.content = None
     Widget.teardown(self)
コード例 #2
0
 def teardown(self):
     self.content.teardown()
     self.content = None
     Widget.teardown(self)
コード例 #3
0
ファイル: layout.py プロジェクト: wty0512/micropylis
 def teardown(self):
     for _, _, _, item in self.content:
         item.teardown()
     self.content = []
     Widget.teardown(self)
コード例 #4
0
ファイル: layout.py プロジェクト: wty0512/micropylis
 def teardown(self):
     for row in self.content:
         for cell in row:
             cell.teardown()
     self.content = []
     Widget.teardown(self)
コード例 #5
0
ファイル: layout.py プロジェクト: chrisbiggar/shiny-light
 def teardown(self):
     for _, _, _, item in self.content:
         item.teardown()
     self.content = []
     Widget.teardown(self)
コード例 #6
0
ファイル: layout.py プロジェクト: chrisbiggar/shiny-light
 def teardown(self):
     for row in self.content:
         for cell in row:
             cell.teardown()
     self.content = []
     Widget.teardown(self)