*** empty log message ***

svn path=/trunk/boinc/; revision=4381
This commit is contained in:
Rom Walton 2004-10-21 21:25:27 +00:00
parent edc93f0fa1
commit 6b736b65c6
4 changed files with 4 additions and 4 deletions

View File

@ -183,7 +183,7 @@ void CViewMessages::OnListRender(wxTimerEvent &event)
if ( iCount != m_iCount )
{
m_iCount = iCount;
if ( 0 <= iCount )
if ( 0 >= iCount )
m_pListPane->DeleteAllItems();
else
{

View File

@ -227,7 +227,7 @@ void CViewProjects::OnListRender(wxTimerEvent &event)
if ( iCount != m_iCount )
{
m_iCount = iCount;
if ( 0 <= iCount )
if ( 0 >= iCount )
m_pListPane->DeleteAllItems();
else
m_pListPane->SetItemCount(iCount);

View File

@ -172,7 +172,7 @@ void CViewTransfers::OnListRender(wxTimerEvent &event)
if ( iCount != m_iCount )
{
m_iCount = iCount;
if ( 0 <= iCount )
if ( 0 >= iCount )
m_pListPane->DeleteAllItems();
else
m_pListPane->SetItemCount(iCount);

View File

@ -188,7 +188,7 @@ void CViewWork::OnListRender(wxTimerEvent &event)
if ( iCount != m_iCount )
{
m_iCount = iCount;
if ( 0 <= iCount )
if ( 0 >= iCount )
m_pListPane->DeleteAllItems();
else
m_pListPane->SetItemCount(iCount);