diff options
Diffstat (limited to 'kdejava/koala/org/kde/koala/KGlobalAccel.java')
-rw-r--r-- | kdejava/koala/org/kde/koala/KGlobalAccel.java | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/kdejava/koala/org/kde/koala/KGlobalAccel.java b/kdejava/koala/org/kde/koala/KGlobalAccel.java index f34882d1..fabb014b 100644 --- a/kdejava/koala/org/kde/koala/KGlobalAccel.java +++ b/kdejava/koala/org/kde/koala/KGlobalAccel.java @@ -9,7 +9,7 @@ import org.kde.qt.TQObject; /** - KGlobalAccel allows you to have global accelerators that are independent of + TDEGlobalAccel allows you to have global accelerators that are independent of the focused window. Unlike KAccel it does not matter which window is currently active. @short Configurable global shortcut support. @@ -19,30 +19,30 @@ import org.kde.qt.TQObject; @see KKeyDialog */ -public class KGlobalAccel extends TQObject { - protected KGlobalAccel(Class dummy){super((Class) null);} +public class TDEGlobalAccel extends TQObject { + protected TDEGlobalAccel(Class dummy){super((Class) null);} public native TQMetaObject metaObject(); public native String className(); /** - Creates a new KGlobalAccel object with the given pParent and + Creates a new TDEGlobalAccel object with the given pParent and psName. @param pParent the parent of the TQObject @param psName the name of the TQObject - @short Creates a new KGlobalAccel object with the given pParent and psName. + @short Creates a new TDEGlobalAccel object with the given pParent and psName. */ - public KGlobalAccel(TQObject pParent, String psName) { + public TDEGlobalAccel(TQObject pParent, String psName) { super((Class) null); - newKGlobalAccel(pParent,psName); + newTDEGlobalAccel(pParent,psName); } - private native void newKGlobalAccel(TQObject pParent, String psName); - public KGlobalAccel(TQObject pParent) { + private native void newTDEGlobalAccel(TQObject pParent, String psName); + public TDEGlobalAccel(TQObject pParent) { super((Class) null); - newKGlobalAccel(pParent); + newTDEGlobalAccel(pParent); } - private native void newKGlobalAccel(TQObject pParent); + private native void newTDEGlobalAccel(TQObject pParent); /** Checks whether the accelerators are enabled. - @return true if the KGlobalAccel is enabled + @return true if the TDEGlobalAccel is enabled @short Checks whether the accelerators are enabled. */ @@ -154,12 +154,12 @@ public class KGlobalAccel extends TQObject { /** Read all shortcuts from <code>pConfig</code>, or (if <code>pConfig</code> is zero) from the application's configuration file - KGlobal.config(). + TDEGlobal.config(). @param pConfig the configuration file to read from, or 0 for the application configuration file @return true if successful, false otherwise - @short Read all shortcuts from <code>pConfig</code>, or (if <code>pConfig</code> is zero) from the application's configuration file KGlobal.config(). + @short Read all shortcuts from <code>pConfig</code>, or (if <code>pConfig</code> is zero) from the application's configuration file TDEGlobal.config(). */ public native boolean readSettings(KConfigBase pConfig); public native boolean readSettings(); |