(String msg)
| 252 | } |
| 253 | |
| 254 | public void fatalError(String msg) { |
| 255 | AlertDialog dlg = new AlertDialog.Builder(mActivity).setMessage(msg) |
| 256 | .setTitle("CoolReader fatal error").show(); |
| 257 | try { |
| 258 | Thread.sleep(10); |
| 259 | } catch (InterruptedException e) { |
| 260 | // do nothing |
| 261 | } |
| 262 | dlg.dismiss(); |
| 263 | mActivity.finish(); |
| 264 | } |
| 265 | |
| 266 | private ProgressDialog mProgress; |
| 267 | private boolean enable_progress = true; |
no test coverage detected