Set window titles.
(self)
| 18 | self.init() |
| 19 | |
| 20 | def settitle(self): |
| 21 | "Set window titles." |
| 22 | self.top.wm_title("Path Browser") |
| 23 | self.top.wm_iconname("Path Browser") |
| 24 | |
| 25 | def rootnode(self): |
| 26 | return PathBrowserTreeItem() |
nothing calls this directly
no test coverage detected