Probably best to generalize. Changed user guide to wiki.

This commit is contained in:
blitzmann
2014-03-10 23:34:00 -04:00
parent 1d66757b28
commit 3718d20361
2 changed files with 5 additions and 5 deletions

View File

@@ -33,7 +33,7 @@ class MainMenuBar(wx.MenuBar):
self.exportSkillsNeededId = wx.NewId()
self.importCharacterId = wx.NewId()
self.preferencesId = wx.NewId()
self.userGuideId = wx.NewId()
self.wikiId = wx.NewId()
self.forumId = wx.NewId()
self.mainFrame = gui.mainFrame.MainFrame.getInstance()
@@ -98,7 +98,7 @@ class MainMenuBar(wx.MenuBar):
# Help menu
helpMenu = wx.Menu()
self.Append(helpMenu, "&Help")
helpMenu.Append(self.userGuideId, "User Guide", "Go to User Guide on GitHub")
helpMenu.Append(self.wikiId, "Wiki", "Go to wiki on GitHub")
helpMenu.Append(self.forumId, "Forums", "Go to EVE Online Forum thread")
helpMenu.AppendSeparator()
helpMenu.Append(wx.ID_ABOUT)