summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kttsd/libkttsd/pluginproc.h2
-rw-r--r--kttsd/plugins/festivalint/festivalintconf.cpp1
-rw-r--r--kttsd/plugins/festivalint/festivalintproc.cpp1
-rw-r--r--kttsd/plugins/festivalint/festivalintproc.h3
4 files changed, 3 insertions, 4 deletions
diff --git a/kttsd/libkttsd/pluginproc.h b/kttsd/libkttsd/pluginproc.h
index 307ba79..473fdd0 100644
--- a/kttsd/libkttsd/pluginproc.h
+++ b/kttsd/libkttsd/pluginproc.h
@@ -112,7 +112,7 @@
* If @ref supportsAsync returns False, KTTSD will run the plugin in a separate
* TQThread. As a consequence, the plugin must not make use of the KDE Library,
* when @ref sayText or @ref synthText is called,
-* with the exception of TDEProcess and family (KProcIO, KShellProcess).
+* with the exception of TDEProcess and family (TDEProcIO, KShellProcess).
* This restriction comes about because the KDE Libraries make use of the
* main TQt event loop, which unfortunately, runs only in the main thread.
* This restriction will likely be lifted in TQt 4 and later.
diff --git a/kttsd/plugins/festivalint/festivalintconf.cpp b/kttsd/plugins/festivalint/festivalintconf.cpp
index 81e346c..a541eef 100644
--- a/kttsd/plugins/festivalint/festivalintconf.cpp
+++ b/kttsd/plugins/festivalint/festivalintconf.cpp
@@ -44,7 +44,6 @@
#include <tdetempfile.h>
#include <kstandarddirs.h>
#include <knuminput.h>
-#include <kprocio.h>
#include <kprogress.h>
#include <kiconloader.h>
diff --git a/kttsd/plugins/festivalint/festivalintproc.cpp b/kttsd/plugins/festivalint/festivalintproc.cpp
index da5e71b..e223b2f 100644
--- a/kttsd/plugins/festivalint/festivalintproc.cpp
+++ b/kttsd/plugins/festivalint/festivalintproc.cpp
@@ -33,6 +33,7 @@
// KDE includes.
#include <kdebug.h>
#include <tdeconfig.h>
+#include <tdeprocess.h>
#include <kstandarddirs.h>
// KTTS includes.
diff --git a/kttsd/plugins/festivalint/festivalintproc.h b/kttsd/plugins/festivalint/festivalintproc.h
index c1438a6..60601a1 100644
--- a/kttsd/plugins/festivalint/festivalintproc.h
+++ b/kttsd/plugins/festivalint/festivalintproc.h
@@ -27,11 +27,10 @@
#include <tqstringlist.h>
#include <tqmutex.h>
-#include <tdeprocess.h>
-
#include <pluginproc.h>
class TQTextCodec;
+class TDEProcess;
class FestivalIntProc : public PlugInProc{
TQ_OBJECT