]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/treebase.cpp
Add entry for 2.8.0.1
[wxWidgets.git] / src / common / treebase.cpp
index 38d242bf063267c577be5b432f2fea0ef96c50a6..08220fa5039f081efa02b59d24680e4669a3fb26 100644 (file)
@@ -162,7 +162,9 @@ wxSize wxTreeCtrlBase::DoGetBestSize() const
     else // use precise, if potentially slow, size computation method
     {
         // iterate over all items recursively
-        wxGetBestTreeSize(this, GetRootItem(), size);
+        wxTreeItemId idRoot = GetRootItem();
+        if ( idRoot.IsOk() )
+            wxGetBestTreeSize(this, idRoot, size);
     }
 
     // need some minimal size even for empty tree