X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4cbc57f086cee690f397ac5622d3f1d7153b300e..31ad423e4fb556ec225a63b161154d3bf3445c1b:/contrib/src/fl/updatesmgr.cpp?ds=inline diff --git a/contrib/src/fl/updatesmgr.cpp b/contrib/src/fl/updatesmgr.cpp index c126fbfb03..57845b066b 100644 --- a/contrib/src/fl/updatesmgr.cpp +++ b/contrib/src/fl/updatesmgr.cpp @@ -75,7 +75,7 @@ void cbSimpleUpdatesMgr::OnStartChanges() cbDockPane& pane = *panes[n]; // store pane state pane.mUMgrData.StoreItemState( pane.mBoundsInParent ); - pane.mUMgrData.SetDirty( FALSE ); + pane.mUMgrData.SetDirty( false ); for( size_t i = 0; i != pane.GetRowList().Count(); ++i ) { @@ -83,7 +83,7 @@ void cbSimpleUpdatesMgr::OnStartChanges() // store row state row.mUMgrData.StoreItemState( row.mBoundsInParent ); - row.mUMgrData.SetDirty( FALSE ); + row.mUMgrData.SetDirty( false ); for( size_t k = 0; k != row.mBars.Count(); ++k ) { @@ -91,7 +91,7 @@ void cbSimpleUpdatesMgr::OnStartChanges() // store bar state bar.mUMgrData.StoreItemState( bar.mBoundsInParent ); - bar.mUMgrData.SetDirty( FALSE ); + bar.mUMgrData.SetDirty( false ); } } } @@ -102,23 +102,23 @@ void cbSimpleUpdatesMgr::OnFinishChanges() // nothing here, could be overriden by more sophisticated updates-managers } -void cbSimpleUpdatesMgr::OnRowWillChange( cbRowInfo* pRow, cbDockPane* pInPane ) +void cbSimpleUpdatesMgr::OnRowWillChange( cbRowInfo* WXUNUSED(pRow), cbDockPane* WXUNUSED(pInPane) ) { // -/- } -void cbSimpleUpdatesMgr::OnBarWillChange( cbBarInfo* pBar, - cbRowInfo* pInRow, cbDockPane* pInPane ) +void cbSimpleUpdatesMgr::OnBarWillChange( cbBarInfo* WXUNUSED(pBar), + cbRowInfo* WXUNUSED(pInRow), cbDockPane* WXUNUSED(pInPane) ) { // -/- } -void cbSimpleUpdatesMgr::OnPaneMarginsWillChange( cbDockPane* pPane ) +void cbSimpleUpdatesMgr::OnPaneMarginsWillChange( cbDockPane* WXUNUSED(pPane) ) { // -/- } -void cbSimpleUpdatesMgr::OnPaneWillChange( cbDockPane* pPane ) +void cbSimpleUpdatesMgr::OnPaneWillChange( cbDockPane* WXUNUSED(pPane) ) { // -/- } @@ -163,7 +163,7 @@ void cbSimpleUpdatesMgr::UpdateNow() wxDC* pDc = NULL; - bool rowChanged = FALSE; + bool rowChanged = false; // FIXME:: the below should not be fixed cbBarInfo* barsToRepaint[256]; @@ -173,7 +173,7 @@ void cbSimpleUpdatesMgr::UpdateNow() if ( WasChanged( row.mUMgrData, row.mBoundsInParent ) ) - rowChanged = TRUE; + rowChanged = true; else for( size_t k = 0; k != row.mBars.Count(); ++k ) @@ -249,36 +249,36 @@ void cbSimpleUpdatesMgr::UpdateNow() // step #2 - do ordered refreshing and resizing of bar window objects now - wxNode* pNode = mBarsToRefresh.First(); - wxNode* pPaneNode = mPanesList.First(); + wxNode* pNode = mBarsToRefresh.GetFirst(); + wxNode* pPaneNode = mPanesList.GetFirst(); while( pNode ) { - cbBarInfo* pBar = (cbBarInfo*) pNode->Data(); - cbDockPane* pPane = (cbDockPane*)pPaneNode->Data(); + cbBarInfo* pBar = (cbBarInfo*) pNode->GetData(); + cbDockPane* pPane = (cbDockPane*)pPaneNode->GetData(); pPane->SizeBar( pBar ); - pNode = pNode->Next(); - pPaneNode = pPaneNode->Next(); + pNode = pNode->GetNext(); + pPaneNode = pPaneNode->GetNext(); } - pNode = mBarsToRefresh.First(); + pNode = mBarsToRefresh.GetFirst(); while( pNode ) { - cbBarInfo* pBar = (cbBarInfo*)pNode->Data(); + cbBarInfo* pBar = (cbBarInfo*)pNode->GetData(); if ( pBar->mpBarWnd ) { pBar->mpBarWnd->Refresh(); // FIXME:: - //info.mpBarWnd->Show(FALSE); - //info.mpBarWnd->Show(TRUE); + //info.mpBarWnd->Show(false); + //info.mpBarWnd->Show(true); } - pNode = pNode->Next(); + pNode = pNode->GetNext(); } if ( clientWindowChanged )