summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KCommandHistory.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KCommandHistory.java')
-rw-r--r--kdejava/koala/org/kde/koala/KCommandHistory.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/kdejava/koala/org/kde/koala/KCommandHistory.java b/kdejava/koala/org/kde/koala/KCommandHistory.java
index 37096ceb..0e97f583 100644
--- a/kdejava/koala/org/kde/koala/KCommandHistory.java
+++ b/kdejava/koala/org/kde/koala/KCommandHistory.java
@@ -44,16 +44,16 @@ public class KCommandHistory extends TQObject {
@param actionCollection the parent collection
@short Creates a command history, to store commands.
*/
- public KCommandHistory(KActionCollection actionCollection, boolean withMenus) {
+ public KCommandHistory(TDEActionCollection actionCollection, boolean withMenus) {
super((Class) null);
newKCommandHistory(actionCollection,withMenus);
}
- private native void newKCommandHistory(KActionCollection actionCollection, boolean withMenus);
- public KCommandHistory(KActionCollection actionCollection) {
+ private native void newKCommandHistory(TDEActionCollection actionCollection, boolean withMenus);
+ public KCommandHistory(TDEActionCollection actionCollection) {
super((Class) null);
newKCommandHistory(actionCollection);
}
- private native void newKCommandHistory(KActionCollection actionCollection);
+ private native void newKCommandHistory(TDEActionCollection actionCollection);
/**
Erases all the undo/redo history.
Use this when reloading the data, for instance, since this invalidates
@@ -103,13 +103,13 @@ public class KCommandHistory extends TQObject {
public native void updateActions();
/**
Undoes the last action.
- Call this if you don't use the builtin KActions.
+ Call this if you don't use the builtin TDEActions.
@short Undoes the last action.
*/
public native void undo();
/**
Redoes the last undone action.
- Call this if you don't use the builtin KActions.
+ Call this if you don't use the builtin TDEActions.
@short Redoes the last undone action.
*/
public native void redo();