summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-12-02 13:07:08 +0900
committerMichele Calgaro <[email protected]>2024-12-02 13:07:08 +0900
commit4948733f211e3ac6d9cab6ac7b6b9fc44b683c66 (patch)
tree5b23a55687a7485fd5ff08d51a3c730d6d62103a
parent997dbd41f19fd0f950595b106b37abce6326a328 (diff)
downloadtdebindings-4948733f211e3ac6d9cab6ac7b6b9fc44b683c66.tar.gz
tdebindings-4948733f211e3ac6d9cab6ac7b6b9fc44b683c66.zip
Use tdeprocess.h
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r--kjsembed/jsconsolewidget.cpp2
-rw-r--r--smoke/tde/tde_header_list2
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/TDEProcess.java4
-rw-r--r--tdejava/koala/tdejava/KProcIO.cpp2
-rw-r--r--tdejava/koala/tdejava/KShellProcess.cpp2
-rw-r--r--tdejava/koala/tdejava/TDEJavaSlot.h2
-rw-r--r--tdejava/koala/tdejava/TDEProcess.cpp2
-rw-r--r--xparts/mozilla/kmozillapart.cpp2
-rw-r--r--xparts/mozilla/kshell.cpp2
-rw-r--r--xparts/xpart_notepad/shell_xparthost.cpp2
-rw-r--r--xparts/xpart_notepad/xp_notepad_factory.cpp2
11 files changed, 12 insertions, 12 deletions
diff --git a/kjsembed/jsconsolewidget.cpp b/kjsembed/jsconsolewidget.cpp
index e536fba5..e4d3e16c 100644
--- a/kjsembed/jsconsolewidget.cpp
+++ b/kjsembed/jsconsolewidget.cpp
@@ -30,7 +30,7 @@
#include <klineedit.h>
#include <tdelocale.h>
#include <tdepopupmenu.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <ktextedit.h>
#include <twin.h>
diff --git a/smoke/tde/tde_header_list b/smoke/tde/tde_header_list
index 7e363226..c7c5711e 100644
--- a/smoke/tde/tde_header_list
+++ b/smoke/tde/tde_header_list
@@ -251,7 +251,7 @@ kprintaction.h
kprinter.h
tdeprint/kpreloadobject.h
kprocctrl.h
-kprocess.h
+tdeprocess.h
kprocio.h
kprogress.h
kpropertiesdialog.h
diff --git a/tdejava/koala/org/trinitydesktop/koala/TDEProcess.java b/tdejava/koala/org/trinitydesktop/koala/TDEProcess.java
index bf5d438f..ccc5ff86 100644
--- a/tdejava/koala/org/trinitydesktop/koala/TDEProcess.java
+++ b/tdejava/koala/org/trinitydesktop/koala/TDEProcess.java
@@ -516,7 +516,7 @@ public class TDEProcess extends TQObject {
outnot and errnot and connect their Qt signals to the respective
TDEProcess slots.
For a more detailed explanation, it is best to have a look at the default
- implementation in kprocess.cpp.
+ implementation in tdeprocess.cpp.
@short Called right after a (successful) fork() on the parent side.
*/
protected native int commSetupDoneP();
@@ -538,7 +538,7 @@ public class TDEProcess extends TQObject {
/**
Cleans up the communication links to the child after it has exited.
This function should act upon the values of pid() and runs.
- See the kprocess.cpp source for details.
+ See the tdeprocess.cpp source for details.
<li>
If pid() returns zero, the communication links should be closed
diff --git a/tdejava/koala/tdejava/KProcIO.cpp b/tdejava/koala/tdejava/KProcIO.cpp
index 42cbdd7e..9f167014 100644
--- a/tdejava/koala/tdejava/KProcIO.cpp
+++ b/tdejava/koala/tdejava/KProcIO.cpp
@@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT.
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tqstring.h>
#include <kprocio.h>
#include <tqcstring.h>
diff --git a/tdejava/koala/tdejava/KShellProcess.cpp b/tdejava/koala/tdejava/KShellProcess.cpp
index 562d2d9b..eb914a83 100644
--- a/tdejava/koala/tdejava/KShellProcess.cpp
+++ b/tdejava/koala/tdejava/KShellProcess.cpp
@@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT.
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tqstring.h>
#include <qtjava/QtSupport.h>
diff --git a/tdejava/koala/tdejava/TDEJavaSlot.h b/tdejava/koala/tdejava/TDEJavaSlot.h
index 1d316eae..eca180b7 100644
--- a/tdejava/koala/tdejava/TDEJavaSlot.h
+++ b/tdejava/koala/tdejava/TDEJavaSlot.h
@@ -35,7 +35,7 @@
#include <tdeglobalsettings.h>
#include <tdelistview.h>
#include <kprocio.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tdeparts/part.h>
#include <tdeparts/browserextension.h>
#include <tdeio/slave.h>
diff --git a/tdejava/koala/tdejava/TDEProcess.cpp b/tdejava/koala/tdejava/TDEProcess.cpp
index c1276f9e..d98a737a 100644
--- a/tdejava/koala/tdejava/TDEProcess.cpp
+++ b/tdejava/koala/tdejava/TDEProcess.cpp
@@ -1,5 +1,5 @@
//Auto-generated by kalyptus. DO NOT EDIT.
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tqstring.h>
#include <tqstringlist.h>
#include <tqcstring.h>
diff --git a/xparts/mozilla/kmozillapart.cpp b/xparts/mozilla/kmozillapart.cpp
index d59c7e2c..679055c5 100644
--- a/xparts/mozilla/kmozillapart.cpp
+++ b/xparts/mozilla/kmozillapart.cpp
@@ -6,7 +6,7 @@
#include <kstdaction.h>
#include <tdeaction.h>
#include <tdemainwindow.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tdeparts/mainwindow.h>
#include <kdebug.h>
#include <tdeaboutdata.h>
diff --git a/xparts/mozilla/kshell.cpp b/xparts/mozilla/kshell.cpp
index 152469f3..ed055469 100644
--- a/xparts/mozilla/kshell.cpp
+++ b/xparts/mozilla/kshell.cpp
@@ -7,7 +7,7 @@
#include <kstdaction.h>
#include <tdeaction.h>
#include <tdemainwindow.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tdeparts/mainwindow.h>
#include <kdebug.h>
diff --git a/xparts/xpart_notepad/shell_xparthost.cpp b/xparts/xpart_notepad/shell_xparthost.cpp
index c6f35a87..a53f1582 100644
--- a/xparts/xpart_notepad/shell_xparthost.cpp
+++ b/xparts/xpart_notepad/shell_xparthost.cpp
@@ -8,7 +8,7 @@
#include <kstdaction.h>
#include <tdeaction.h>
#include <tdemainwindow.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tdeparts/mainwindow.h>
#include <kdebug.h>
diff --git a/xparts/xpart_notepad/xp_notepad_factory.cpp b/xparts/xpart_notepad/xp_notepad_factory.cpp
index cfb2019b..593c625f 100644
--- a/xparts/xpart_notepad/xp_notepad_factory.cpp
+++ b/xparts/xpart_notepad/xp_notepad_factory.cpp
@@ -24,7 +24,7 @@
#include <kstdaction.h>
#include <tdeaction.h>
#include <tdemainwindow.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tdeparts/mainwindow.h>
#include <kdebug.h>
#include "xp_notepad_factory.h"