From: Guido van Rossum Date: Fri, 16 Aug 1991 13:01:50 +0000 (+0000) Subject: Changed minsize to getminsize. X-Git-Tag: v0.9.8~840 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8cf301e757a75d30b9e9fdde0452c66f4d0cb6db;p=thirdparty%2FPython%2Fcpython.git Changed minsize to getminsize. --- diff --git a/Lib/lib-stdwin/Abstract.py b/Lib/lib-stdwin/Abstract.py index 6625f0f23208..45d68aef1898 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() diff --git a/Lib/stdwin/Abstract.py b/Lib/stdwin/Abstract.py index 6625f0f23208..45d68aef1898 100755 --- a/Lib/stdwin/Abstract.py +++ b/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()