diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-11-30 00:01:29 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-11-30 00:01:29 +0000 |
commit | 362c7cd07bd32f94e80e5ca954834cfbc1709953 (patch) | |
tree | 8f929854033e856a2bf29d9167da8c98f754a416 /Mac/Tools/IDE/Wcontrols.py | |
parent | 202355a333b98213449b30dcbfa620be86c96085 (diff) | |
download | cpython-git-362c7cd07bd32f94e80e5ca954834cfbc1709953.tar.gz |
Lots of minor tweaks for the pep252 checkins, mainly because Qd
attributes are no longer supported.
Diffstat (limited to 'Mac/Tools/IDE/Wcontrols.py')
-rw-r--r-- | Mac/Tools/IDE/Wcontrols.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Tools/IDE/Wcontrols.py b/Mac/Tools/IDE/Wcontrols.py index ab6ae966e2..3d52383637 100644 --- a/Mac/Tools/IDE/Wcontrols.py +++ b/Mac/Tools/IDE/Wcontrols.py @@ -170,7 +170,7 @@ class Button(ControlWidget): # emulate the pushing of the button import time self._control.HiliteControl(Controls.kControlButtonPart) - Qd.QDFlushPortBuffer(self._parentwindow.wid, None) # needed under OSX + self._parentwindow.wid.GetWindowPort().QDFlushPortBuffer(None) # needed under OSX time.sleep(0.1) self._control.HiliteControl(0) if self._callback: |