Ignore:
Timestamp:
Apr 12, 2013, 6:21:37 PM (12 years ago)
Author:
alloc
Message:

AEI2.02:

  • Refs #23: Doesn't show on MacOS yet
File:
1 edited

Legend:

Unmodified
Added
Removed
  • java/installer2/src/net/oni2/aeinstaller/gui/MainWin.java

    r805 r806  
    1111import java.io.File;
    1212import java.io.FileNotFoundException;
     13import java.io.IOException;
     14import java.net.URI;
     15import java.net.URISyntaxException;
    1316import java.net.URL;
    1417import java.util.Date;
     
    403406                new AboutDialog().setVisible(true);
    404407        }
     408       
     409        @SuppressWarnings("unused")
     410        private void showHelp() {
     411                try {
     412                        Desktop.getDesktop().browse(new URI("http://wiki.oni2.net/AEI"));
     413                } catch (IOException e) {
     414                        e.printStackTrace();
     415                } catch (URISyntaxException e) {
     416                        e.printStackTrace();
     417                }
     418        }
    405419
    406420        private JFileChooser getConfigOpenSaveDialog(boolean save) {
Note: See TracChangeset for help on using the changeset viewer.