]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/framelayout/samples/demo/wxinfo.cpp
Compile fix for GTK 1.0
[wxWidgets.git] / utils / framelayout / samples / demo / wxinfo.cpp
index 5f4d3ab8cd1f76eea9cc0f5770bb2c8feba7faf2..c7aa85089115314c1e2ad17a0b0e346101a052dc 100644 (file)
@@ -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;
-       }
-}