summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KFilterBase.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KFilterBase.java')
-rw-r--r--kdejava/koala/org/kde/koala/KFilterBase.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/kdejava/koala/org/kde/koala/KFilterBase.java b/kdejava/koala/org/kde/koala/KFilterBase.java
index 90558605..2d73b097 100644
--- a/kdejava/koala/org/kde/koala/KFilterBase.java
+++ b/kdejava/koala/org/kde/koala/KFilterBase.java
@@ -2,11 +2,11 @@
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.QIODevice;
-import org.kde.qt.QIODeviceInterface;
-import org.kde.qt.QObject;
+import org.kde.qt.TQIODevice;
+import org.kde.qt.TQIODeviceInterface;
+import org.kde.qt.TQObject;
/**
@@ -16,7 +16,7 @@ import org.kde.qt.QObject;
@short This is the base class for compression filters such as gzip and bzip2.
*/
-public class KFilterBase extends QObject {
+public class KFilterBase extends TQObject {
protected KFilterBase(Class dummy){super((Class) null);}
/** \internal @short \internal
*/
@@ -24,7 +24,7 @@ public class KFilterBase extends QObject {
public static final int END = 1;
public static final int ERROR = 2;
- public native QMetaObject metaObject();
+ public native TQMetaObject metaObject();
public native String className();
/**
Sets the device on which the filter will work
@@ -32,15 +32,15 @@ public class KFilterBase extends QObject {
@param autodelete if true, <code>dev</code> is deleted when the filter is deleted
@short Sets the device on which the filter will work
*/
- public native void setDevice(QIODeviceInterface dev, boolean autodelete);
- public native void setDevice(QIODeviceInterface dev);
+ public native void setDevice(TQIODeviceInterface dev, boolean autodelete);
+ public native void setDevice(TQIODeviceInterface dev);
/**
Returns the device on which the filter will work.
@return the device on which the filter will work
@short Returns the device on which the filter will work.
*/
- public native QIODeviceInterface device();
+ public native TQIODeviceInterface device();
/** \internal @short \internal
*/
public native void init(int mode);