summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KCompletion.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KCompletion.java')
-rw-r--r--kdejava/koala/org/kde/koala/KCompletion.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/kdejava/koala/org/kde/koala/KCompletion.java b/kdejava/koala/org/kde/koala/KCompletion.java
index e8cac385..5b9cd95c 100644
--- a/kdejava/koala/org/kde/koala/KCompletion.java
+++ b/kdejava/koala/org/kde/koala/KCompletion.java
@@ -47,8 +47,8 @@ import org.kde.qt.TQObject;
of manual and auto-completion is therefore only visible in UI classes,
KCompletion needs to know whether to deliver partial matches
(shell completion) or whole matches (auto/manual completion), therefore
- KGlobalSettings.CompletionMan and
- KGlobalSettings.CompletionAuto have the exact same effect in
+ TDEGlobalSettings.CompletionMan and
+ TDEGlobalSettings.CompletionAuto have the exact same effect in
KCompletion.
</li>
@@ -62,7 +62,7 @@ import org.kde.qt.TQObject;
You don't have to worry much about that though, KCompletion handles
that for you, according to the setting setCompletionMode().
The default setting is globally configured by the user and read
- from KGlobalSettings.completionMode().
+ from TDEGlobalSettings.completionMode().
A short example:
<pre>
KCompletion completion;
@@ -210,17 +210,17 @@ public class KCompletion extends TQObject {
/**
Sets the completion mode to Auto/Manual, Shell or None.
If you don't set the mode explicitly, the global default value
- KGlobalSettings.completionMode() is used.
- KGlobalSettings.CompletionNone disables completion.
+ TDEGlobalSettings.completionMode() is used.
+ TDEGlobalSettings.CompletionNone disables completion.
@param mode the completion mode
@short Sets the completion mode to Auto/Manual, Shell or None.
@see #completionMode
- @see KGlobalSettings#completionMode
+ @see TDEGlobalSettings#completionMode
*/
public native void setCompletionMode(int mode);
/**
Return the current completion mode.
- May be different from KGlobalSettings.completionMode(), if you
+ May be different from TDEGlobalSettings.completionMode(), if you
explicitly called setCompletionMode().
@return the current completion mode