summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/DCOPObject.java
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 15:55:57 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 15:55:57 -0600
commit9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch)
treec81c34dae2b3b1ea73801bf18a960265dc4207f7 /kdejava/koala/org/kde/koala/DCOPObject.java
parent1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff)
downloadtdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz
tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip
Initial TQt conversion
Diffstat (limited to 'kdejava/koala/org/kde/koala/DCOPObject.java')
-rw-r--r--kdejava/koala/org/kde/koala/DCOPObject.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/kdejava/koala/org/kde/koala/DCOPObject.java b/kdejava/koala/org/kde/koala/DCOPObject.java
index 3e30a6d2..7e7fda3f 100644
--- a/kdejava/koala/org/kde/koala/DCOPObject.java
+++ b/kdejava/koala/org/kde/koala/DCOPObject.java
@@ -4,7 +4,7 @@ package org.kde.koala;
import org.kde.qt.Qt;
import java.util.ArrayList;
import org.kde.qt.QtSupport;
-import org.kde.qt.QObject;
+import org.kde.qt.TQObject;
/**
@@ -39,14 +39,14 @@ public class DCOPObject implements QtSupport, DCOPObjectInterface {
private native void newDCOPObject();
/**
Creates a DCOPObject and calculates the object id
- using QObject.name().
+ using TQObject.name().
@param obj the object to extract the name from
- @short Creates a DCOPObject and calculates the object id using QObject.name().
+ @short Creates a DCOPObject and calculates the object id using TQObject.name().
*/
- public DCOPObject(QObject arg1) {
+ public DCOPObject(TQObject arg1) {
newDCOPObject(arg1);
}
- private native void newDCOPObject(QObject arg1);
+ private native void newDCOPObject(TQObject arg1);
/**
Creates a DCOPObject with object Id <code>objId.</code>
@param objId the object id of the DCOP object
@@ -270,16 +270,16 @@ public class DCOPObject implements QtSupport, DCOPObjectInterface {
@short Tries to find an object using a partial object id.
*/
- // QPtrList<DCOPObject> match(const QCString& arg1); >>>> NOT CONVERTED
+ // TQPtrList<DCOPObject> match(const TQCString& arg1); >>>> NOT CONVERTED
/**
- Creates an object id for the QObject <code>obj.</code> This is done
- using the QObject.name() function.
+ Creates an object id for the TQObject <code>obj.</code> This is done
+ using the TQObject.name() function.
@param obj the object whose name will be used
@return the created object id
- @short Creates an object id for the QObject <code>obj.</code>
+ @short Creates an object id for the TQObject <code>obj.</code>
*/
- public static native String objectName(QObject arg1);
+ public static native String objectName(TQObject arg1);
/** Deletes the wrapped C++ instance */
protected native void finalize() throws InternalError;
/** Delete the wrapped C++ instance ahead of finalize() */