summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KCharsets.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KCharsets.java')
-rw-r--r--kdejava/koala/org/kde/koala/KCharsets.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/kdejava/koala/org/kde/koala/KCharsets.java b/kdejava/koala/org/kde/koala/KCharsets.java
index 0d57ca40..da2bc00f 100644
--- a/kdejava/koala/org/kde/koala/KCharsets.java
+++ b/kdejava/koala/org/kde/koala/KCharsets.java
@@ -4,7 +4,7 @@ package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
import java.util.ArrayList;
-import org.kde.qt.QTextCodec;
+import org.kde.qt.TQTextCodec;
/**
@@ -26,22 +26,22 @@ public class KCharsets implements QtSupport {
/**
Provided for compatibility.
@param name the name of the codec
- @return the QTextCodec. If the desired codec could not be found,
+ @return the TQTextCodec. If the desired codec could not be found,
it returns a default (Latin-1) codec
@short Provided for compatibility.
*/
- public native QTextCodec codecForName(String name);
+ public native TQTextCodec codecForName(String name);
/**
- Tries to find a QTextCodec to convert the given encoding from and to
+ Tries to find a TQTextCodec to convert the given encoding from and to
Unicode. If no codec could be found the latin1 codec will be returned an
<code>ok</code> will be set to false.
- @return the QTextCodec. If the desired codec could not be found,
+ @return the TQTextCodec. If the desired codec could not be found,
it returns a default (Latin-1) codec
- @short Tries to find a QTextCodec to convert the given encoding from and to Unicode.
+ @short Tries to find a TQTextCodec to convert the given encoding from and to Unicode.
*/
- public native QTextCodec codecForName(String n, boolean ok);
+ public native TQTextCodec codecForName(String n, boolean ok);
/**
Lists all available encodings as names.
@return the list of all encodings