summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KRootProp.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KRootProp.java')
-rw-r--r--kdejava/koala/org/kde/koala/KRootProp.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/kdejava/koala/org/kde/koala/KRootProp.java b/kdejava/koala/org/kde/koala/KRootProp.java
index 1d33472f..ca207740 100644
--- a/kdejava/koala/org/kde/koala/KRootProp.java
+++ b/kdejava/koala/org/kde/koala/KRootProp.java
@@ -2,8 +2,8 @@
package org.kde.koala;
import org.kde.qt.Qt;
-import org.kde.qt.QColor;
-import org.kde.qt.QFont;
+import org.kde.qt.TQColor;
+import org.kde.qt.TQFont;
import org.kde.qt.QtSupport;
import java.util.ArrayList;
@@ -85,19 +85,19 @@ public class KRootProp implements QtSupport {
public native int readNumEntry(String rKey, int nDefault);
public native int readNumEntry(String rKey);
/**
- Reads a QFont value.
+ Reads a TQFont value.
Reads the value of an entry specified by <code>rKey</code> in the current property
and interpret it as a font object.
@param rKey The key to search for.
@param pDefault A default value returned if the key was not found.
@return The value for this key or a default font if no value was found.
- @short Reads a QFont value.
+ @short Reads a TQFont value.
*/
- public native QFont readFontEntry(String rKey, QFont pDefault);
- public native QFont readFontEntry(String rKey);
+ public native TQFont readFontEntry(String rKey, TQFont pDefault);
+ public native TQFont readFontEntry(String rKey);
/**
- Reads a QColor.
+ Reads a TQColor.
Reads the value of an entry specified by <code>rKey</code> in the current property
and interprets it as a color.
@param rKey The key to search for.
@@ -105,10 +105,10 @@ public class KRootProp implements QtSupport {
@return The value for this key or a default color if no value
was found.
- @short Reads a QColor.
+ @short Reads a TQColor.
*/
- public native QColor readColorEntry(String rKey, QColor pDefault);
- public native QColor readColorEntry(String rKey);
+ public native TQColor readColorEntry(String rKey, TQColor pDefault);
+ public native TQColor readColorEntry(String rKey);
/**
Writes a (key/value) pair.
This is stored to the current property when destroying the
@@ -142,7 +142,7 @@ public class KRootProp implements QtSupport {
@short Writes the (key/value) pair.
*/
- public native String writeEntry(String rKey, QFont rFont);
+ public native String writeEntry(String rKey, TQFont rFont);
/**
Writes the (key/value) pair.
Same as above, but writes a color.
@@ -153,7 +153,7 @@ public class KRootProp implements QtSupport {
@short Writes the (key/value) pair.
*/
- public native String writeEntry(String rKey, QColor rColor);
+ public native String writeEntry(String rKey, TQColor rColor);
/**
Removes an entry.
@param rKey The key to remove.