summaryrefslogtreecommitdiffstats
path: root/src/app/VFS/krquery.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-11-10 10:30:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-11-10 11:24:24 +0900
commitd0692ed19f7eb17a08ddbe6c8cb3191b03c3f9f7 (patch)
tree5bf100b76acba9005dacb9fe25b631e9cc9868ae /src/app/VFS/krquery.cpp
parentebee8a024a015b117e10d5c830fd0c05a0c98b60 (diff)
downloadkrusader-d0692ed19f7eb17a08ddbe6c8cb3191b03c3f9f7.tar.gz
krusader-d0692ed19f7eb17a08ddbe6c8cb3191b03c3f9f7.zip
Add missing moc file inclusion
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/app/VFS/krquery.cpp')
-rw-r--r--src/app/VFS/krquery.cpp4
1 files changed, 2 insertions, 2 deletions
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;