X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8495ba53688a1d5de6cecffdd1a0e783f8b43a00..a6905d8b558f1a0d258365b815bff0b5b5c76a0b:/contrib/src/fl/updatesmgr.cpp diff --git a/contrib/src/fl/updatesmgr.cpp b/contrib/src/fl/updatesmgr.cpp index cf08383c9e..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 ) @@ -274,8 +274,8 @@ void cbSimpleUpdatesMgr::UpdateNow() pBar->mpBarWnd->Refresh(); // FIXME:: - //info.mpBarWnd->Show(FALSE); - //info.mpBarWnd->Show(TRUE); + //info.mpBarWnd->Show(false); + //info.mpBarWnd->Show(true); } pNode = pNode->GetNext();