summaryrefslogtreecommitdiffstats
path: root/Lib/lib-stdwin
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-08-16 13:01:50 (GMT)
committerGuido van Rossum <guido@python.org>1991-08-16 13:01:50 (GMT)
commit8cf301e757a75d30b9e9fdde0452c66f4d0cb6db (patch)
treefbdbf1b0a195a2128416a3e16918cf40830c6a1f /Lib/lib-stdwin
parent6fc178f46d40aa068a713b509904d343ee55cfa6 (diff)
downloadcpython-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.py2
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()