Skip to content

Commit

Permalink
Moved aboutData.py into gui folder
Browse files Browse the repository at this point in the history
  • Loading branch information
hwdro committed Dec 22, 2010
1 parent 15690ad commit d70a96f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions gui/mainFrame.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
from gui.preferenceDialog import PreferenceDialog
from gui.graphFrame import GraphFrame
from gui.copySelectDialog import CopySelectDialog
import aboutData
import gui.aboutData
from wx._core import PyDeadObjectError
import os.path
import gui.chromeTabs
Expand Down Expand Up @@ -210,8 +210,8 @@ def ExitApp(self, event):
def ShowAboutBox(self, evt):
info = wx.AboutDialogInfo()
info.Name = "pyfa"
info.Version = aboutData.versionString
info.Description = wordwrap(aboutData.description + "\n\n\nDevelopers: " + "".join(aboutData.developers) + "\n\nAdditional credits:\n " + "\n ".join(aboutData.credits) + "\n\nLicense: " + aboutData.license + " - see included " + aboutData.licenseLocation,
info.Version = gui.aboutData.versionString
info.Description = wordwrap(gui.aboutData.description + "\n\n\nDevelopers: " + "".join(gui.aboutData.developers) + "\n\nAdditional credits:\n " + "\n ".join(gui.aboutData.credits) + "\n\nLicense: " + gui.aboutData.license + " - see included " + gui.aboutData.licenseLocation,
700, wx.ClientDC(self))
info.WebSite = ("http://www.evefit.org/Pyfa", "pyfa home page")
wx.AboutBox(info)
Expand Down

0 comments on commit d70a96f

Please sign in to comment.