From d0692ed19f7eb17a08ddbe6c8cb3191b03c3f9f7 Mon Sep 17 00:00:00 2001
From: Michele Calgaro <michele.calgaro@yahoo.it>
Date: Mon, 10 Nov 2025 10:30:12 +0900
Subject: Add missing moc file inclusion

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
---
 src/app/Konfigurator/krresulttable.cpp | 2 ++
 src/app/Panel/krview.cpp               | 1 +
 src/app/Queue/queue.cpp                | 2 ++
 src/app/VFS/krquery.cpp                | 4 ++--
 src/app/krservices.cpp                 | 2 ++
 src/app/main.cpp                       | 2 ++
 6 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/src/app/Konfigurator/krresulttable.cpp b/src/app/Konfigurator/krresulttable.cpp
index 3aabc8f..4a11213 100644
--- a/src/app/Konfigurator/krresulttable.cpp
+++ b/src/app/Konfigurator/krresulttable.cpp
@@ -378,3 +378,5 @@ void KrToolResultTable::website(const TQString& url)
 {
   (void) new KRun(url);
 }
+
+#include "krresulttable.moc"
diff --git a/src/app/Panel/krview.cpp b/src/app/Panel/krview.cpp
index 8330f16..6abd8de 100644
--- a/src/app/Panel/krview.cpp
+++ b/src/app/Panel/krview.cpp
@@ -330,3 +330,4 @@ void KrView::renameCurrentItem() {
 	op()->emitRenameItem(it->name(), newName);
 }
 
+#include "krview.moc"
diff --git a/src/app/Queue/queue.cpp b/src/app/Queue/queue.cpp
index f6677f6..30a3e55 100644
--- a/src/app/Queue/queue.cpp
+++ b/src/app/Queue/queue.cpp
@@ -20,3 +20,5 @@ void Queue::dumpQueue()
 {
 	tqDebug("Queue: %s", name().latin1());
 }
+
+#include "queue.moc"
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;
diff --git a/src/app/krservices.cpp b/src/app/krservices.cpp
index 330df14..169c0c0 100644
--- a/src/app/krservices.cpp
+++ b/src/app/krservices.cpp
@@ -214,3 +214,5 @@ void KEasyProcess::receivedStdout (TDEProcess * /* proc */, char *buffer, int bu
 void KEasyProcess::receivedStderr (TDEProcess * /* proc */, char *buffer, int buflen) {
 	_stderr+=TQString::fromLocal8Bit(buffer, buflen);
 }
+
+#include "krservices.moc"
diff --git a/src/app/main.cpp b/src/app/main.cpp
index cb4d158..7295e56 100644
--- a/src/app/main.cpp
+++ b/src/app/main.cpp
@@ -242,3 +242,5 @@ int main(int argc, char *argv[]) {
   // let's go.
   return app.exec();
 }
+
+#include "krusaderapp.moc"
-- 
cgit v1.2.3

