Point Help menu items to the wiki

This commit is contained in:
Casey Reas
2010-06-21 21:14:05 +00:00
parent 7d5e8cc511
commit 1dd235131f

View File

@@ -870,7 +870,7 @@ public class Editor extends JFrame implements RunnerListener {
item = new JMenuItem("Troubleshooting");
item.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Base.showTroubleshooting();
Base.openURL("http://wiki.processing.org/w/Troubleshooting");
}
});
menu.add(item);
@@ -896,7 +896,7 @@ public class Editor extends JFrame implements RunnerListener {
item = new JMenuItem("Frequently Asked Questions");
item.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Base.openURL("http://processing.org/faq.html");
Base.openURL("http://wiki.processing.org/w/FAQ");
}
});
menu.add(item);