summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KProcess.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KProcess.java')
-rw-r--r--kdejava/koala/org/kde/koala/KProcess.java28
1 files changed, 14 insertions, 14 deletions
diff --git a/kdejava/koala/org/kde/koala/KProcess.java b/kdejava/koala/org/kde/koala/KProcess.java
index 02fa932f..02e4a084 100644
--- a/kdejava/koala/org/kde/koala/KProcess.java
+++ b/kdejava/koala/org/kde/koala/KProcess.java
@@ -2,10 +2,10 @@
package org.kde.koala;
import org.kde.qt.Qt;
-import org.kde.qt.QMetaObject;
+import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
-import org.kde.qt.QObject;
-import org.kde.qt.QObject;
+import org.kde.qt.TQObject;
+import org.kde.qt.TQObject;
/**
@@ -61,7 +61,7 @@ import org.kde.qt.QObject;
KProcess proc = new KProcess;
proc << "my_executable";
proc << "These" << "are" << "the" << "command" << "line" << "args";
- QApplication.connect(proc, SIGNAL("processExited(KProcess )"),
+ TQApplication.connect(proc, SIGNAL("processExited(KProcess )"),
pointer_to_my_object, SLOT("my_objects_slot(KProcess )"));
proc.start();
</pre>
@@ -96,7 +96,7 @@ import org.kde.qt.QObject;
@see KProcIO
*/
-public class KProcess extends QObject {
+public class KProcess extends TQObject {
protected KProcess(Class dummy){super((Class) null);}
/**
More or less intuitive constants for use with setPriority().
@@ -112,7 +112,7 @@ public class KProcess extends QObject {
/**
Modes in which the communication channel can be opened.
- If communication for more than one channel is required,
+ If communication for more than one channel is retquired,
the values have to be or'ed together, for example to get
communication with stdout as well as with stdin, you would
specify <code>Stdin</code> | <code>Stdout</code>
@@ -138,22 +138,22 @@ public class KProcess extends QObject {
public static final int Block = 2;
public static final int OwnGroup = 3;
- public native QMetaObject metaObject();
+ public native TQMetaObject metaObject();
public native String className();
/**
Constructor
@short Constructor
*/
- public KProcess(QObject parent, String name) {
+ public KProcess(TQObject parent, String name) {
super((Class) null);
newKProcess(parent,name);
}
- private native void newKProcess(QObject parent, String name);
- public KProcess(QObject parent) {
+ private native void newKProcess(TQObject parent, String name);
+ public KProcess(TQObject parent) {
super((Class) null);
newKProcess(parent);
}
- private native void newKProcess(QObject parent);
+ private native void newKProcess(TQObject parent);
/**
Constructor
@short Constructor
@@ -410,7 +410,7 @@ public class KProcess extends QObject {
@short Lets you see what your arguments are for debugging.
*/
- // const QValueList<QCString>& args(); >>>> NOT CONVERTED
+ // const TQValueList<TQCString>& args(); >>>> NOT CONVERTED
/**
Controls whether the started process should drop any
setuid/setgid privileges or whether it should keep them.
@@ -512,7 +512,7 @@ public class KProcess extends QObject {
Called right after a (successful) fork() on the parent side. This function
will usually do some communications cleanup, like closing in[0],
out[1] and out[1].
- Furthermore, it must also create the QSocketNotifiers innot,
+ Furthermore, it must also create the TQSocketNotifiers innot,
outnot and errnot and connect their Qt signals to the respective
KProcess slots.
For a more detailed explanation, it is best to have a look at the default
@@ -614,7 +614,7 @@ public class KProcess extends QObject {
/**
Called when another bulk of data can be sent to the child's
stdin. If there is no more data to be sent to stdin currently
- available, this function must disable the QSocketNotifier innot.
+ available, this function must disable the TQSocketNotifier innot.
@param dummy ignore this argument
@short Called when another bulk of data can be sent to the child's stdin.
*/