8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ee587d commit a6e4353Copy full SHA for a6e4353
demo/wordpad.py
@@ -362,7 +362,7 @@ def SaveChangesDialog(self):
362
363
class AboutForm(WinForms.Form):
364
def __init__(self):
365
- super.__init__()
+ super().__init__()
366
self.InitializeComponent()
367
368
def InitializeComponent(self):
@@ -393,8 +393,8 @@ def InitializeComponent(self):
393
self.Controls.AddRange((self.label1, self.btnClose))
394
395
self.FormBorderStyle = WinForms.FormBorderStyle.FixedDialog
396
- self.MaximizeBox = 0
397
- self.MinimizeBox = 0
+ self.MaximizeBox = False
+ self.MinimizeBox = False
398
self.Name = "AboutForm"
399
self.ShowInTaskbar = False
400
self.StartPosition = WinForms.FormStartPosition.CenterScreen
0 commit comments