Issue #25173: Replace 'master' with 'parent' in tkinter.messagebox calls.

This associates the message box with the widget and is better for Mac OSX.
Patch by Mark Roseman.
This commit is contained in:
Terry Jan Reedy 2015-09-25 22:22:55 -04:00
parent cbe16aefb8
commit 3be2e54adc
5 changed files with 20 additions and 20 deletions

View file

@ -91,7 +91,7 @@ class OutputWindow(EditorWindow):
"No special line",
"The line you point at doesn't look like "
"a valid file name followed by a line number.",
master=self.text)
parent=self.text)
return
filename, lineno = result
edit = self.flist.open(filename)