Commit 8cf301e7 authored by Guido van Rossum's avatar Guido van Rossum

Changed minsize to getminsize.

parent 6fc178f4
......@@ -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()
......
......@@ -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()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment