summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KZip.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KZip.java')
-rw-r--r--kdejava/koala/org/kde/koala/KZip.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/kdejava/koala/org/kde/koala/KZip.java b/kdejava/koala/org/kde/koala/KZip.java
index 65fb55d9..c6c9e6ae 100644
--- a/kdejava/koala/org/kde/koala/KZip.java
+++ b/kdejava/koala/org/kde/koala/KZip.java
@@ -3,8 +3,8 @@ package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
-import org.kde.qt.QIODevice;
-import org.kde.qt.QIODeviceInterface;
+import org.kde.qt.TQIODevice;
+import org.kde.qt.TQIODeviceInterface;
/**
@@ -59,21 +59,21 @@ public class KZip extends KArchive {
private native void newKZip(String filename);
/**
Creates an instance that operates on the given device.
- The device can be compressed (KFilterDev) or not (QFile, etc.).
- @warning Do not assume that giving a QFile here will decompress the file,
+ The device can be compressed (KFilterDev) or not (TQFile, etc.).
+ @warning Do not assume that giving a TQFile here will decompress the file,
in case it's compressed!
@param dev the device to access
@short Creates an instance that operates on the given device.
*/
- public KZip(QIODeviceInterface dev) {
+ public KZip(TQIODeviceInterface dev) {
super((Class) null);
newKZip(dev);
}
- private native void newKZip(QIODeviceInterface dev);
+ private native void newKZip(TQIODeviceInterface dev);
/**
The name of the zip file, as passed to the constructor.
- Null if you used the QIODevice constructor.
- @return the zip's file name, or null if a QIODevice is used
+ Null if you used the TQIODevice constructor.
+ @return the zip's file name, or null if a TQIODevice is used
@short The name of the zip file, as passed to the constructor.
*/