summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KPasteTextAction.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KPasteTextAction.java')
-rw-r--r--kdejava/koala/org/kde/koala/KPasteTextAction.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/kdejava/koala/org/kde/koala/KPasteTextAction.java b/kdejava/koala/org/kde/koala/KPasteTextAction.java
index 9de17c12..20ebb27d 100644
--- a/kdejava/koala/org/kde/koala/KPasteTextAction.java
+++ b/kdejava/koala/org/kde/koala/KPasteTextAction.java
@@ -2,10 +2,10 @@
package org.kde.koala;
import org.kde.qt.Qt;
-import org.kde.qt.QMetaObject;
+import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
-import org.kde.qt.QObject;
-import org.kde.qt.QWidget;
+import org.kde.qt.TQObject;
+import org.kde.qt.TQWidget;
/**
@@ -20,7 +20,7 @@ import org.kde.qt.QWidget;
*/
public class KPasteTextAction extends KAction {
protected KPasteTextAction(Class dummy){super((Class) null);}
- public native QMetaObject metaObject();
+ public native TQMetaObject metaObject();
public native String className();
/**
Create a KPasteTextAction, with a text, an icon, an accelerator,
@@ -36,21 +36,21 @@ public class KPasteTextAction extends KAction {
@param name An internal name for this action.
@short Create a KPasteTextAction, with a text, an icon, an accelerator, a slot connected to the action, parent and name.
*/
- public KPasteTextAction(String text, String icon, KShortcut cut, QObject receiver, String slot, QObject parent, String name) {
+ public KPasteTextAction(String text, String icon, KShortcut cut, TQObject receiver, String slot, TQObject parent, String name) {
super((Class) null);
newKPasteTextAction(text,icon,cut,receiver,slot,parent,name);
}
- private native void newKPasteTextAction(String text, String icon, KShortcut cut, QObject receiver, String slot, QObject parent, String name);
- public KPasteTextAction(String text, String icon, KShortcut cut, QObject receiver, String slot, QObject parent) {
+ private native void newKPasteTextAction(String text, String icon, KShortcut cut, TQObject receiver, String slot, TQObject parent, String name);
+ public KPasteTextAction(String text, String icon, KShortcut cut, TQObject receiver, String slot, TQObject parent) {
super((Class) null);
newKPasteTextAction(text,icon,cut,receiver,slot,parent);
}
- private native void newKPasteTextAction(String text, String icon, KShortcut cut, QObject receiver, String slot, QObject parent);
- public KPasteTextAction(String text, String icon, KShortcut cut, QObject receiver, String slot) {
+ private native void newKPasteTextAction(String text, String icon, KShortcut cut, TQObject receiver, String slot, TQObject parent);
+ public KPasteTextAction(String text, String icon, KShortcut cut, TQObject receiver, String slot) {
super((Class) null);
newKPasteTextAction(text,icon,cut,receiver,slot);
}
- private native void newKPasteTextAction(String text, String icon, KShortcut cut, QObject receiver, String slot);
+ private native void newKPasteTextAction(String text, String icon, KShortcut cut, TQObject receiver, String slot);
/**
Controls the behavior of the clipboard history menu popup.
@param mode If false and the clipboard contains a non-text object
@@ -62,8 +62,8 @@ public class KPasteTextAction extends KAction {
@short Controls the behavior of the clipboard history menu popup.
*/
public native void setMixedMode(boolean mode);
- public native int plug(QWidget widget, int index);
- public native int plug(QWidget widget);
+ public native int plug(TQWidget widget, int index);
+ public native int plug(TQWidget widget);
protected native void menuAboutToShow();
protected native void menuItemActivated(int id);
protected native void slotActivated();