(application)
| 309 | } |
| 310 | } |
| 311 | onOpenFileCallback(application) { |
| 312 | const onOpenFileList = this.onOpenFileList; |
| 313 | delete this.onOpenFileList; |
| 314 | if (!onOpenFileList) |
| 315 | return; |
| 316 | for (const path of onOpenFileList) |
| 317 | this.onOpenFile(application, path); |
| 318 | } |
| 319 | onPathChanged(application, path) { |
| 320 | application.invalidateMenus(); |
| 321 | } |
nothing calls this directly
no test coverage detected