diff options
author | Just van Rossum <just@letterror.com> | 2001-07-10 19:25:40 (GMT) |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2001-07-10 19:25:40 (GMT) |
commit | 3eec7620be596daf4c3f96dbc7fc93afcf639b00 (patch) | |
tree | 746bcaaed11384bf9da0cde441eb6c9f7ed3b52b /Mac/Tools/IDE/Wcontrols.py | |
parent | 353ae5896499d0ec297cff00e3686f4cd88668c3 (diff) | |
download | cpython-3eec7620be596daf4c3f96dbc7fc93afcf639b00.zip cpython-3eec7620be596daf4c3f96dbc7fc93afcf639b00.tar.gz cpython-3eec7620be596daf4c3f96dbc7fc93afcf639b00.tar.bz2 |
- fixed some re usage, partly so it'll still work when re uses pre instead
of sre, and partly fixing re -> regex porting oversights
- fixed PyFontify.py so it actually *works* again..
Diffstat (limited to 'Mac/Tools/IDE/Wcontrols.py')
-rw-r--r-- | Mac/Tools/IDE/Wcontrols.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Mac/Tools/IDE/Wcontrols.py b/Mac/Tools/IDE/Wcontrols.py index 7a88cca..7394084 100644 --- a/Mac/Tools/IDE/Wcontrols.py +++ b/Mac/Tools/IDE/Wcontrols.py @@ -381,14 +381,6 @@ class Scrollbar(ControlWidget): return self._value -class __xxxx_PopupControl(ControlWidget): - - def __init__(self, possize, title = "Button", callback = None): - procID = Controls.popupMenuProc # | Controls.useWFont - ControlWidget.__init__(self, possize, title, procID, callback, 0, 0, 1) - self._isdefault = 0 - - def _scalebarvalue(absmin, absmax, curmin, curmax): if curmin <= absmin and curmax >= absmax: return None |