summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KLineEdit.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KLineEdit.java')
-rw-r--r--kdejava/koala/org/kde/koala/KLineEdit.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/kdejava/koala/org/kde/koala/KLineEdit.java b/kdejava/koala/org/kde/koala/KLineEdit.java
index bacfdca2..fc79bbc9 100644
--- a/kdejava/koala/org/kde/koala/KLineEdit.java
+++ b/kdejava/koala/org/kde/koala/KLineEdit.java
@@ -53,7 +53,7 @@ import org.kde.qt.TQLineEdit;
individual key-bindings by using setKeyBinding() with the default
second argument.
If <code>EchoMode</code> for this widget is set to something other than <code>TQLineEdit</code>.Normal,
- the completion mode will always be defaulted to KGlobalSettings.CompletionNone.
+ the completion mode will always be defaulted to TDEGlobalSettings.CompletionNone.
This is done purposefully to guard against protected entries such as passwords being
cached in KCompletion's list. Hence, if the <code>EchoMode</code> is not TQLineEdit.Normal, the
completion mode is automatically disabled.
@@ -220,7 +220,7 @@ public class KLineEdit extends TQLineEdit implements KCompletionBaseInterface {
@param create Set this to false if you don't want the box to be created
i.e. to test if it is available.
@return the completion-box, that is used in completion mode
- KGlobalSettings.CompletionPopup.
+ TDEGlobalSettings.CompletionPopup.
This method will create a completion-box if none is there, yet.
@short
@@ -264,10 +264,10 @@ public class KLineEdit extends TQLineEdit implements KCompletionBaseInterface {
public native String originalText();
/**
Set the completion-box to be used in completion mode
- KGlobalSettings.CompletionPopup.
+ TDEGlobalSettings.CompletionPopup.
This will do nothing if a completion-box already exists.
@param box The KCompletionBox to set
- @short Set the completion-box to be used in completion mode KGlobalSettings.CompletionPopup.
+ @short Set the completion-box to be used in completion mode TDEGlobalSettings.CompletionPopup.
*/
public native void setCompletionBox(KCompletionBox box);
/**
@@ -494,7 +494,7 @@ public class KLineEdit extends TQLineEdit implements KCompletionBaseInterface {
public native boolean emitSignals();
/**
Returns the current completion mode.
- The return values are of type KGlobalSettings.Completion.
+ The return values are of type TDEGlobalSettings.Completion.
See setCompletionMode() for details.
@return the completion mode.
@@ -559,7 +559,7 @@ public class KLineEdit extends TQLineEdit implements KCompletionBaseInterface {
Sets this object to use global values for key-bindings.
This method changes the values of the key bindings for
rotation and completion features to the default values
- provided in KGlobalSettings.
+ provided in TDEGlobalSettings.
NOTE: By default inheriting widgets should uses the
global key-bindings so that there will be no need to
call this method.