]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/choice.cpp
don't disable top level children in parents Enable()
[wxWidgets.git] / src / msw / choice.cpp
index 32b36c3603fd51618f724505ebebe7c270c9ea4f..41af85d6a400685d793e7db25b9237580dbf3891 100644 (file)
@@ -202,7 +202,7 @@ wxString wxChoice::GetString(int n) const
 {
     size_t len = (size_t)::SendMessage(GetHwnd(), CB_GETLBTEXTLEN, n, 0);
     wxString str;
-    if (len) {
+    if (len != CB_ERR && len > 0) {
         if ( ::SendMessage(GetHwnd(), CB_GETLBTEXT, n,
                            (LPARAM)str.GetWriteBuf(len)) == CB_ERR ) {
             wxLogLastError(wxT("SendMessage(CB_GETLBTEXT)"));
@@ -281,8 +281,7 @@ void wxChoice::DoSetSize(int x, int y,
     // the _displayed_ size (NOT the drop down menu size) so
     // setting-getting-setting size would not work.
 
-    wxSize sz = GetSize();
-    wxControl::DoSetSize(x, y, width, sz.y, sizeFlags);
+    wxControl::DoSetSize(x, y, width, -1, sizeFlags);
 }
 
 wxSize wxChoice::DoGetBestSize() const