| 540 | | new HelpBrowser("file://" + ConverterOptions.CONF_DIR + "/doc/index.html"); |
|---|
| | 540 | try { |
|---|
| | 541 | new HelpBrowser("file://" + ConverterOptions.CONF_DIR + "/doc/index.html"); |
|---|
| | 542 | } catch (Exception ex) { |
|---|
| | 543 | MessageBox messageBox = new MessageBox(new Shell(Display.getDefault()), SWT.ICON_ERROR | SWT.OK); |
|---|
| | 544 | messageBox.setText("Unable to Load Browser"); |
|---|
| | 545 | messageBox.setMessage("iriverter was unable to find the libraries required to display the browser\n\n" + |
|---|
| | 546 | "You can read the help online."); |
|---|
| | 547 | messageBox.open(); |
|---|
| | 548 | } |
|---|