summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KZip.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/KZip.java
parent1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff)
downloadtdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz
tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip
Initial TQt conversion
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.
*/