summaryrefslogtreecommitdiffstats
path: root/Mac/Tools/IDE/Wcontrols.py
diff options
context:
space:
mode:
authorJust van Rossum <just@letterror.com>2001-07-10 19:25:40 (GMT)
committerJust van Rossum <just@letterror.com>2001-07-10 19:25:40 (GMT)
commit3eec7620be596daf4c3f96dbc7fc93afcf639b00 (patch)
tree746bcaaed11384bf9da0cde441eb6c9f7ed3b52b /Mac/Tools/IDE/Wcontrols.py
parent353ae5896499d0ec297cff00e3686f4cd88668c3 (diff)
downloadcpython-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.py8
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