From d0692ed19f7eb17a08ddbe6c8cb3191b03c3f9f7 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 10 Nov 2025 10:30:12 +0900 Subject: Add missing moc file inclusion Signed-off-by: Michele Calgaro --- src/app/VFS/krquery.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/app/VFS/krquery.cpp') diff --git a/src/app/VFS/krquery.cpp b/src/app/VFS/krquery.cpp index 7d4507c..066afed 100644 --- a/src/app/VFS/krquery.cpp +++ b/src/app/VFS/krquery.cpp @@ -166,7 +166,7 @@ bool KRQuery::matchCommon( const TQString &nameIn, const TQStringList &matchList for ( unsigned int i = 0; i < excludeList.count(); ++i ) { TQRegExp re = TQRegExp( *excludeList.at( i ), matchesCaseSensitive, true ); - re.search( name, 0 ); + re.search( name, 0 ); if ( re.matchedLength() == name.length() ) return false; } @@ -176,7 +176,7 @@ bool KRQuery::matchCommon( const TQString &nameIn, const TQStringList &matchList for ( unsigned int i = 0; i < matchList.count(); ++i ) { TQRegExp re = TQRegExp( *matchList.at( i ), matchesCaseSensitive, true ); - re.search( name, 0 ); + re.search( name, 0 ); if ( re.matchedLength() == name.length() ) return true; } return false; -- cgit v1.2.3