Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
8d5c4735
Commit
8d5c4735
authored
Nov 14, 1995
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added 2 missing SetPort calls
parent
e50c5d69
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
Mac/Lib/FrameWork.py
Mac/Lib/FrameWork.py
+2
-1
No files found.
Mac/Lib/FrameWork.py
View file @
8d5c4735
...
...
@@ -471,7 +471,6 @@ class Window:
self
.
parent
.
appendwindow
(
self
.
wid
,
self
)
def
close
(
self
):
pass
self
.
do_postclose
()
def
do_postclose
(
self
):
...
...
@@ -540,6 +539,7 @@ class Window:
def
do_rawupdate
(
self
,
window
,
event
):
if
DEBUG
:
print
"raw update for"
,
window
SetPort
(
window
)
window
.
BeginUpdate
()
self
.
do_update
(
window
,
event
)
window
.
EndUpdate
()
...
...
@@ -565,6 +565,7 @@ class ControlsWindow(Window):
def
do_inContent
(
self
,
partcode
,
window
,
event
):
(
what
,
message
,
when
,
where
,
modifiers
)
=
event
SetPort
(
window
)
# XXXX Needed?
local
=
GlobalToLocal
(
where
)
ctltype
,
control
=
FindControl
(
local
,
window
)
if
ctltype
and
control
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment