()
| 443 | } |
| 444 | |
| 445 | void openImage() { |
| 446 | if (!showDialog()) |
| 447 | return; |
| 448 | try { |
| 449 | open(name, gwidth, gheight, gslices, gtype, gfill); |
| 450 | } catch(OutOfMemoryError e) { |
| 451 | IJ.outOfMemory("New Image..."); |
| 452 | } |
| 453 | } |
| 454 | |
| 455 | /** Called when ImageJ quits. */ |
| 456 | public static void savePreferences(Properties prefs) { |
no test coverage detected