summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KTrader.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KTrader.java')
-rw-r--r--kdejava/koala/org/kde/koala/KTrader.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/kdejava/koala/org/kde/koala/KTrader.java b/kdejava/koala/org/kde/koala/KTrader.java
index 519ac328..4e780caf 100644
--- a/kdejava/koala/org/kde/koala/KTrader.java
+++ b/kdejava/koala/org/kde/koala/KTrader.java
@@ -2,17 +2,17 @@
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 java.util.ArrayList;
-import org.kde.qt.QObject;
+import org.kde.qt.TQObject;
/**
A Trader interface, similar to the CORBA Trader.
Basically, it provides a way for an application to query
all KDE services (that is, applications and components) that match
- a specific set of requirements. This allows you to find an
+ a specific set of retquirements. This allows you to find an
application in real-time without you having to hard-code the name
and/or path of the application. It is mostly used when you want to
do complex queries that KServiceTypeProfile can't handle.
@@ -72,14 +72,14 @@ import org.kde.qt.QObject;
@short Provides a way to query the KDE infrastructure for specific applications or components.
*/
-public class KTrader extends QObject {
+public class KTrader extends TQObject {
protected KTrader(Class dummy){super((Class) null);}
- public native QMetaObject metaObject();
+ public native TQMetaObject metaObject();
public native String className();
/**
The main function in the KTrader class.
It will return a list of services that match your
- specifications. The only required parameter is the service
+ specifications. The only retquired parameter is the service
type. This is something like 'text/plain' or 'text/html'. The
constraint parameter is used to limit the possible choices
returned based on the constraints you give it.