mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=4381
This commit is contained in:
parent
edc93f0fa1
commit
6b736b65c6
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue