diff options
author | Guido van Rossum <guido@python.org> | 1991-08-16 13:01:50 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-08-16 13:01:50 (GMT) |
commit | 8cf301e757a75d30b9e9fdde0452c66f4d0cb6db (patch) | |
tree | fbdbf1b0a195a2128416a3e16918cf40830c6a1f /Lib/lib-stdwin | |
parent | 6fc178f46d40aa068a713b509904d343ee55cfa6 (diff) | |
download | cpython-8cf301e757a75d30b9e9fdde0452c66f4d0cb6db.zip cpython-8cf301e757a75d30b9e9fdde0452c66f4d0cb6db.tar.gz cpython-8cf301e757a75d30b9e9fdde0452c66f4d0cb6db.tar.bz2 |
Changed minsize to getminsize.
Diffstat (limited to 'Lib/lib-stdwin')
-rw-r--r-- | Lib/lib-stdwin/Abstract.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-stdwin/Abstract.py b/Lib/lib-stdwin/Abstract.py index 6625f0f..45d68ae 100644 --- a/Lib/lib-stdwin/Abstract.py +++ b/Lib/lib-stdwin/Abstract.py @@ -40,7 +40,7 @@ class AbstractChild(): def destroy(self): unimpl() # def realize(self): return unimpl() - def minsize(self, m): return unimpl() + def getminsize(self, (m, (width, height))): return unimpl() def getbounds(self): return unimpl() def setbounds(self, bounds): unimpl() def draw(self, (d, area)): unimpl() |