Changed wxYield calls to wxYieldIfNeeded

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9411 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2001-02-22 12:10:02 +00:00
parent cb2713bfa8
commit cd66f45bfe

View File

@@ -1557,7 +1557,7 @@ void wxGenericTreeCtrl::ScrollTo(const wxTreeItemId &item)
// We have to call this here because the label in // We have to call this here because the label in
// question might just have been added and no screen // question might just have been added and no screen
// update taken place. // update taken place.
if (m_dirty) wxYield(); if (m_dirty) wxYieldIfNeeded();
wxGenericTreeItem *gitem = (wxGenericTreeItem*) item.m_pItem; wxGenericTreeItem *gitem = (wxGenericTreeItem*) item.m_pItem;
@@ -2203,7 +2203,7 @@ wxTreeItemId wxGenericTreeCtrl::HitTest(const wxPoint& point, int& flags)
// We have to call this here because the label in // We have to call this here because the label in
// question might just have been added and no screen // question might just have been added and no screen
// update taken place. // update taken place.
if (m_dirty) wxYield(); if (m_dirty) wxYieldIfNeeded();
wxClientDC dc(this); wxClientDC dc(this);
PrepareDC(dc); PrepareDC(dc);
@@ -2263,7 +2263,7 @@ void wxGenericTreeCtrl::Edit( const wxTreeItemId& item )
// We have to call this here because the label in // We have to call this here because the label in
// question might just have been added and no screen // question might just have been added and no screen
// update taken place. // update taken place.
if (m_dirty) wxYield(); if (m_dirty) wxYieldIfNeeded();
wxString s = m_currentEdit->GetText(); wxString s = m_currentEdit->GetText();
int x = m_currentEdit->GetX(); int x = m_currentEdit->GetX();
@@ -2406,7 +2406,7 @@ void wxGenericTreeCtrl::OnMouse( wxMouseEvent &event )
// highlight the current drop target if any // highlight the current drop target if any
DrawDropEffect(m_dropTarget); DrawDropEffect(m_dropTarget);
wxYield(); wxYieldIfNeeded();
} }
} }
else if ( (event.LeftUp() || event.RightUp()) && m_isDragging ) else if ( (event.LeftUp() || event.RightUp()) && m_isDragging )
@@ -2437,7 +2437,7 @@ void wxGenericTreeCtrl::OnMouse( wxMouseEvent &event )
SetCursor(m_oldCursor); SetCursor(m_oldCursor);
wxYield(); wxYieldIfNeeded();
} }
else else
{ {