]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/choice.cpp
Fix memory leak by letting the base class version handle the
[wxWidgets.git] / src / gtk / choice.cpp
index 384f8b5d0048366b24c45f4d8736dff21b23c026..651bf9d161bd42a5cf60157b18f0b5b20e085e14 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Robert Roebling
 // Id:          $Id$
 // Copyright:   (c) 1998 Robert Roebling
-// Licence:     wxWindows licence
+// Licence:     wxWidgets licence
 /////////////////////////////////////////////////////////////////////////////
 
 
@@ -560,7 +560,11 @@ wxSize wxChoice::DoGetBestSize() const
     if ( ret.x < 80 )
         ret.x = 80;
 
-    ret.y = 16 + GetCharHeight();
+    // If this request_size is called with no entries then
+    // the returned height is wrong. Give it a reasonable
+    // default value.
+    if (ret.y <= 18)
+        ret.y = 8 + GetCharHeight();
 
     return ret;
 }