(trunk qt) ...omitting the "0" in the filterbar for rows that have 0 matches doesn't look right. add the 0 back in again.

This commit is contained in:
Charles Kerr 2010-11-15 15:19:57 +00:00
parent 35c45497f6
commit 0ecc4f44cf
1 changed files with 1 additions and 1 deletions

View File

@ -559,5 +559,5 @@ FilterBar :: recount ( )
QString
FilterBar :: getCountString( int n ) const
{
return n>0 ? QString("%L1").arg(n) : QString();
return QString("%L1").arg(n);
}