X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/af11388a6210ffc2d588ea852cea103511c50f08..86fdd27b451ec92f4573f125fec73c44421ee744:/utils/framelayout/samples/demo/wxinfo.cpp diff --git a/utils/framelayout/samples/demo/wxinfo.cpp b/utils/framelayout/samples/demo/wxinfo.cpp index 5f4d3ab8cd..c7aa850891 100644 --- a/utils/framelayout/samples/demo/wxinfo.cpp +++ b/utils/framelayout/samples/demo/wxinfo.cpp @@ -135,25 +135,4 @@ void wxCreateClassInfoTree( wxTreeCtrl* pTree, } while( nHanged != 0 ); } -void wxCreateSerializerInfoTree( wxTreeCtrl* pTree, - wxTreeItemId parentBranchId, - long classImageNo - ) -{ - expand_item( pTree, parentBranchId ); - - wxSerializerInfo::InitializeSerializers(); - - // FOR NOW:: no hierarchy - one branch - - wxSerializerInfo* pCur = wxSerializerInfo::first; - - while( pCur ) - { - wxString fullName = pCur->className + wxString( "Serializer" ); - - pTree->AppendItem( parentBranchId, fullName, classImageNo ); - pCur = pCur->next; - } -}