| 1832 | } |
| 1833 | |
| 1834 | int AudacityApp::OnRun() |
| 1835 | { |
| 1836 | // Returns 0 to the command line if the run completed normally |
| 1837 | auto result = wxApp::OnRun(); |
| 1838 | if (result == 0) |
| 1839 | // If not otherwise abnormal, report any journal sync failure |
| 1840 | result = Journal::GetExitCode(); |
| 1841 | return result; |
| 1842 | } |
| 1843 | |
| 1844 | void AudacityApp::OnIdle( wxIdleEvent &evt ) |
| 1845 | { |
nothing calls this directly
no test coverage detected