dialogs/AboutDialog.py
changeset 1782 5b6ad7a7fd9d
parent 1736 7e61baa047f0
child 1850 614396cbffbf
--- a/dialogs/AboutDialog.py	Sat Aug 19 21:06:54 2017 +0300
+++ b/dialogs/AboutDialog.py	Mon Aug 21 21:55:18 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,8 +167,6 @@
 
         close.Bind(wx.EVT_BUTTON, lambda evt: self.Destroy())
 
-#----------------------------------------------------------------------
-
 
 def ShowAboutDialog(parent, info):
     if os.name == "nt":