]> git.saurik.com Git - wxWidgets.git/commitdiff
avoid assert in DoGetBestSize() for an empty tree
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 27 Nov 2006 16:36:09 +0000 (16:36 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 27 Nov 2006 16:36:09 +0000 (16:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43689 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

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