From 0ecc4f44cf095c7377b3775929a8ecf806ef7d04 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Mon, 15 Nov 2010 15:19:57 +0000 Subject: [PATCH] (trunk qt) ...omitting the "0" in the filterbar for rows that have 0 matches doesn't look right. add the 0 back in again. --- qt/filterbar.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/filterbar.cc b/qt/filterbar.cc index 276f1e461..5b6116bd9 100644 --- a/qt/filterbar.cc +++ b/qt/filterbar.cc @@ -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); }