]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Changed minsize to getminsize.
authorGuido van Rossum <guido@python.org>
Fri, 16 Aug 1991 13:01:50 +0000 (13:01 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 16 Aug 1991 13:01:50 +0000 (13:01 +0000)
Lib/lib-stdwin/Abstract.py
Lib/stdwin/Abstract.py

index 6625f0f23208a8ddbf1fef10e11005f584a6bb3c..45d68aef18986c372e6c682e757c8b739a78ff74 100644 (file)
@@ -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()
index 6625f0f23208a8ddbf1fef10e11005f584a6bb3c..45d68aef18986c372e6c682e757c8b739a78ff74 100755 (executable)
@@ -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()