diff options
author | Just van Rossum <just@letterror.com> | 2001-12-03 19:27:38 (GMT) |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2001-12-03 19:27:38 (GMT) |
commit | 2009aa66b4900fc11224318333be4b560f0820ce (patch) | |
tree | 7f4ce21563f132b9ea41f4d4ceb8a665314ff6f0 /Mac | |
parent | c44d2c52c96e9a88cd368942f0d43d70e6ed64bf (diff) | |
download | cpython-2009aa66b4900fc11224318333be4b560f0820ce.zip cpython-2009aa66b4900fc11224318333be4b560f0820ce.tar.gz cpython-2009aa66b4900fc11224318333be4b560f0820ce.tar.bz2 |
removed some dead code.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Tools/IDE/PyDocSearch.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Mac/Tools/IDE/PyDocSearch.py b/Mac/Tools/IDE/PyDocSearch.py index 1f9842e..208870e 100644 --- a/Mac/Tools/IDE/PyDocSearch.py +++ b/Mac/Tools/IDE/PyDocSearch.py @@ -35,21 +35,6 @@ def verifydocpath(docpath): return 1 -class TwoLineList(W.List): - - LDEF_ID = 468 - - def createlist(self): - from Carbon import List - self._calcbounds() - self.SetPort() - rect = self._bounds - rect = rect[0]+1, rect[1]+1, rect[2]-16, rect[3]-1 - self._list = List.LNew(rect, (0, 0, 1, 0), (0, 28), self.LDEF_ID, self._parentwindow.wid, - 0, 1, 0, 1) - self.set(self.items) - - _resultscounter = 1 class Results: |