dialogs/AboutDialog.py
changeset 1784 64beb9e9c749
parent 1782 5b6ad7a7fd9d
child 1850 614396cbffbf
--- a/dialogs/AboutDialog.py	Mon Aug 21 20:17:19 2017 +0000
+++ b/dialogs/AboutDialog.py	Mon Aug 21 23:22:58 2017 +0300
@@ -37,8 +37,6 @@
 from wx.lib.agw.hyperlink import HyperLinkCtrl
 
 
-#----------------------------------------------------------------------
-
 class AboutDialog(wx.Dialog):
     """
     A replacement About Dialog for Windows, as it uses a generic frame that
@@ -106,8 +104,6 @@
         CreditsDialog(self, self.info)
 
 
-#----------------------------------------------------------------------
-
 class CreditsDialog(wx.Dialog):
     def __init__(self, parent, info):
         wx.Dialog.__init__(self, parent, title=_("Credits"), size=(475, 320),
@@ -144,8 +140,6 @@
         close.Bind(wx.EVT_BUTTON, lambda evt: self.Destroy())
 
 
-#----------------------------------------------------------------------
-
 class LicenseDialog(wx.Dialog):
     def __init__(self, parent, info):
         wx.Dialog.__init__(self, parent, title=_("License"), size=(500, 400),
@@ -173,7 +167,6 @@
 
         close.Bind(wx.EVT_BUTTON, lambda evt: self.Destroy())
 
-#----------------------------------------------------------------------
 
 def ShowAboutDialog(parent, info):
     if os.name == "nt":