summaryrefslogtreecommitdiffstats
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
parentebee8a024a015b117e10d5c830fd0c05a0c98b60 (diff)
downloadkrusader-d0692ed19f7eb17a08ddbe6c8cb3191b03c3f9f7.tar.gz
krusader-d0692ed19f7eb17a08ddbe6c8cb3191b03c3f9f7.zip
Add missing moc file inclusionHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--src/app/Konfigurator/krresulttable.cpp2
-rw-r--r--src/app/Panel/krview.cpp1
-rw-r--r--src/app/Queue/queue.cpp2
-rw-r--r--src/app/VFS/krquery.cpp4
-rw-r--r--src/app/krservices.cpp2
-rw-r--r--src/app/main.cpp2
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"