| 101 | |
| 102 | |
| 103 | bool ErrorHandler::AskRepeatWrite(const wchar *FileName,bool DiskFull) |
| 104 | { |
| 105 | #ifndef SILENT |
| 106 | if (!Silent) |
| 107 | { |
| 108 | // We do not display "repeat write" prompt in Android, so we do not |
| 109 | // need the matching system error message. |
| 110 | SysErrMsg(); |
| 111 | bool Repeat=uiAskRepeatWrite(FileName,DiskFull); |
| 112 | if (!Repeat) // Disable shutdown if user pressed Cancel in error dialog. |
| 113 | DisableShutdown=true; |
| 114 | return Repeat; |
| 115 | } |
| 116 | #endif |
| 117 | return false; |
| 118 | } |
| 119 | |
| 120 | |
| 121 | void ErrorHandler::SeekError(const wchar *FileName) |
no test coverage detected