Changeset 3245
- Timestamp:
- 07/12/2007 04:29:36 PM (1 year ago)
- Files:
-
- branches/stable/dabo/ui/uiwx/uiApp.py (modified) (2 diffs)
- trunk/dabo/ui/uiwx/uiApp.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/stable/dabo/ui/uiwx/uiApp.py
r3057 r3245 346 346 # If neither of the above works, then copy text to the clipboard. 347 347 if self.ActiveForm: 348 win = self.ActiveForm. ActiveControl348 win = self.ActiveForm.FindFocus() 349 349 handled = False 350 350 if cut: … … 397 397 def onEditPaste(self, evt): 398 398 if self.ActiveForm: 399 win = self.ActiveForm. ActiveControl399 win = self.ActiveForm.FindFocus() 400 400 handled = False 401 401 if hasattr(win, "paste"): trunk/dabo/ui/uiwx/uiApp.py
r3233 r3245 357 357 # If neither of the above works, then copy text to the clipboard. 358 358 if self.ActiveForm: 359 win = self.ActiveForm. ActiveControl359 win = self.ActiveForm.FindFocus() 360 360 handled = False 361 361 if cut: … … 408 408 def onEditPaste(self, evt): 409 409 if self.ActiveForm: 410 win = self.ActiveForm. ActiveControl410 win = self.ActiveForm.FindFocus() 411 411 handled = False 412 412 if hasattr(win, "paste"):
