summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KURLBar.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KURLBar.java')
-rw-r--r--kdejava/koala/org/kde/koala/KURLBar.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/kdejava/koala/org/kde/koala/KURLBar.java b/kdejava/koala/org/kde/koala/KURLBar.java
index 7fa969ea..546f02e1 100644
--- a/kdejava/koala/org/kde/koala/KURLBar.java
+++ b/kdejava/koala/org/kde/koala/KURLBar.java
@@ -24,7 +24,7 @@ import org.kde.qt.TQFrame;
read and write the configuration of all the entries. It can differentiate
between global and local entries -- global entries will be saved in the
global configuration (kdeglobals), while local entries will be saved in
- your application's KConfig object.
+ your application's TDEConfig object.
Due to the configurability, you usually only insert some default entries
once and then solely use the read and writeConfig methods to preserve the
user's configuration.
@@ -159,29 +159,29 @@ public class KURLBar extends TQFrame {
The reading of every item is delegated to the readItem() method.
@short Call this method to read a saved configuration from <code>config</code>, inside the group <code>itemGroup.</code>
*/
- public native void readConfig(KConfig config, String itemGroup);
+ public native void readConfig(TDEConfig config, String itemGroup);
/**
Call this method to save the current configuration into <code>config</code>,
inside the group <code>iconGroup.</code> The writeItem() method is used
to save each item.
@short Call this method to save the current configuration into <code>config</code>, inside the group <code>iconGroup.</code>
*/
- public native void writeConfig(KConfig config, String itemGroup);
+ public native void writeConfig(TDEConfig config, String itemGroup);
/**
Called from readConfig() to read the i'th from <code>config.</code>
After reading a KURLBarItem is created and initialized with the read
values (as well as the given <code>applicationLocal</code>).
@short Called from readConfig() to read the i'th from <code>config.</code>
*/
- public native void readItem(int i, KConfig config, boolean applicationLocal);
+ public native void readItem(int i, TDEConfig config, boolean applicationLocal);
/**
Called from writeConfig() to save the KURLBarItem <code>item</code> as the
i'th entry in the config-object.
<code>global</code> tell whether it should be saved in the global configuration
- or not (using KConfig.writeEntry( key, value, true, global ) ).
+ or not (using TDEConfig.writeEntry( key, value, true, global ) ).
@short Called from writeConfig() to save the KURLBarItem <code>item</code> as the i'th entry in the config-object.
*/
- public native void writeItem(KURLBarItem item, int i, KConfig arg3, boolean global);
+ public native void writeItem(KURLBarItem item, int i, TDEConfig arg3, boolean global);
/**
@return the current KURLBarItem, or 0L if none.