From 34ca61b6e6025e6cf94dda48c28c69b4d7bbf191 Mon Sep 17 00:00:00 2001 From: Antoine Cellerier Date: Sun, 4 Jan 2009 17:51:39 +0100 Subject: [PATCH] Oops. --- modules/gui/qt4/recents.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gui/qt4/recents.cpp b/modules/gui/qt4/recents.cpp index c3014424fb..9445cda0aa 100644 --- a/modules/gui/qt4/recents.cpp +++ b/modules/gui/qt4/recents.cpp @@ -104,7 +104,7 @@ void RecentsMRL::load() for( int i = 0; i < list.size(); ++i ) { - if ( !filter && filter->indexIn( list.at(i) ) == -1 ) + if ( !filter || filter->indexIn( list.at(i) ) == -1 ) stack->append( list.at(i) ); } } -- 2.39.2