(self, event)
| 78 | |
| 79 | # ---------------------------------------------------------------------- |
| 80 | def saveFile(self, event): |
| 81 | with wx.FileDialog( |
| 82 | self, "Save As", "", "", |
| 83 | "Python files (*.py)|*.py", |
| 84 | wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT |
| 85 | ) as dlg: |
| 86 | dlg.ShowModal() |
| 87 | dlg.GetPath() |
| 88 | |
| 89 | |
| 90 | # Run the program |
nothing calls this directly
no outgoing calls
no test coverage detected