X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/003b8322f346ba005c07fff762dc3e90396a21a1..d66c3960d541cf9e3ba10519a49a9e34b4ddfc81:/contrib/src/fl/frmview.cpp?ds=sidebyside diff --git a/contrib/src/fl/frmview.cpp b/contrib/src/fl/frmview.cpp index dcd98c5f9f..f06c94e6db 100644 --- a/contrib/src/fl/frmview.cpp +++ b/contrib/src/fl/frmview.cpp @@ -41,9 +41,6 @@ void wxFrameView::OnIdle( wxIdleEvent& event) if ( mDoToolUpdates ) { - int o = 0; //glt - ++o; - // TBD:: } } @@ -153,7 +150,7 @@ void wxFrameViewSerializer::Serialize( wxObject* pObj, wxObjectStorage& store ) /***** Implementation for class wxFrameManager *****/ -void wxFrameManager::DoSerialize( wxObjectStorage& store ) +void wxFrameManager::DoSerialize( wxObjectStorage& WXUNUSED(store) ) { #if 0 store.AddInitialRef( mpFrameWnd ); @@ -293,7 +290,7 @@ void wxFrameManager::Init( wxWindow* pMainFrame, const wxString& settingsFile ) } } - if ( mActiveViewNo >= mViews.GetCount() ) + if ( mActiveViewNo >= (int)mViews.GetCount() ) mActiveViewNo = -1; ActivateView( GetView( ( mActiveViewNo == -1 ) ? 0 : mActiveViewNo ) ); @@ -308,7 +305,7 @@ void wxFrameManager::AddView( wxFrameView* pFrmView ) pFrmView->mpFrameMgr = this; // back ref. } -void wxFrameManager::RemoveView( wxFrameView* pFrmView ) +void wxFrameManager::RemoveView( wxFrameView* WXUNUSED(pFrmView) ) { // TBD:: wxFAIL_MSG( _T("wxFrameManager::RemoveView() has not been implemented yet.") );