summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KOpenWithDlg.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KOpenWithDlg.java')
-rw-r--r--kdejava/koala/org/kde/koala/KOpenWithDlg.java30
1 files changed, 15 insertions, 15 deletions
diff --git a/kdejava/koala/org/kde/koala/KOpenWithDlg.java b/kdejava/koala/org/kde/koala/KOpenWithDlg.java
index 114d105f..b777bb7f 100644
--- a/kdejava/koala/org/kde/koala/KOpenWithDlg.java
+++ b/kdejava/koala/org/kde/koala/KOpenWithDlg.java
@@ -2,11 +2,11 @@
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 java.util.ArrayList;
-import org.kde.qt.QWidget;
-import org.kde.qt.QDialog;
+import org.kde.qt.TQWidget;
+import org.kde.qt.TQDialog;
/**
@@ -17,9 +17,9 @@ import org.kde.qt.QDialog;
@short "Open with" dialog box.
*/
-public class KOpenWithDlg extends QDialog {
+public class KOpenWithDlg extends TQDialog {
protected KOpenWithDlg(Class dummy){super((Class) null);}
- public native QMetaObject metaObject();
+ public native TQMetaObject metaObject();
public native String className();
/**
Create a dialog that asks for a application to open a given
@@ -29,11 +29,11 @@ public class KOpenWithDlg extends QDialog {
@param parent parent widget
@short Create a dialog that asks for a application to open a given URL(s) with.
*/
- public KOpenWithDlg(ArrayList urls, QWidget parent) {
+ public KOpenWithDlg(ArrayList urls, TQWidget parent) {
super((Class) null);
newKOpenWithDlg(urls,parent);
}
- private native void newKOpenWithDlg(ArrayList urls, QWidget parent);
+ private native void newKOpenWithDlg(ArrayList urls, TQWidget parent);
public KOpenWithDlg(ArrayList urls) {
super((Class) null);
newKOpenWithDlg(urls);
@@ -48,11 +48,11 @@ public class KOpenWithDlg extends QDialog {
@param parent parent widget
@short Create a dialog that asks for a application to open a given URL(s) with.
*/
- public KOpenWithDlg(ArrayList urls, String text, String value, QWidget parent) {
+ public KOpenWithDlg(ArrayList urls, String text, String value, TQWidget parent) {
super((Class) null);
newKOpenWithDlg(urls,text,value,parent);
}
- private native void newKOpenWithDlg(ArrayList urls, String text, String value, QWidget parent);
+ private native void newKOpenWithDlg(ArrayList urls, String text, String value, TQWidget parent);
public KOpenWithDlg(ArrayList urls, String text, String value) {
super((Class) null);
newKOpenWithDlg(urls,text,value);
@@ -66,11 +66,11 @@ public class KOpenWithDlg extends QDialog {
@param parent parent widget
@short Create a dialog to select a service for a given service type.
*/
- public KOpenWithDlg(String serviceType, String value, QWidget parent) {
+ public KOpenWithDlg(String serviceType, String value, TQWidget parent) {
super((Class) null);
newKOpenWithDlg(serviceType,value,parent);
}
- private native void newKOpenWithDlg(String serviceType, String value, QWidget parent);
+ private native void newKOpenWithDlg(String serviceType, String value, TQWidget parent);
public KOpenWithDlg(String serviceType, String value) {
super((Class) null);
newKOpenWithDlg(serviceType,value);
@@ -82,11 +82,11 @@ public class KOpenWithDlg extends QDialog {
@param parent parent widget
@short Create a dialog to select an application Note that this dialog doesn't apply to URLs.
*/
- public KOpenWithDlg(QWidget parent) {
+ public KOpenWithDlg(TQWidget parent) {
super((Class) null);
newKOpenWithDlg(parent);
}
- private native void newKOpenWithDlg(QWidget parent);
+ private native void newKOpenWithDlg(TQWidget parent);
public KOpenWithDlg() {
super((Class) null);
newKOpenWithDlg();
@@ -149,8 +149,8 @@ public class KOpenWithDlg extends QDialog {
*/
protected native void init(String text, String value);
/**
- Reimplemented from QDialog.accept() to save history of the combobox
- @short Reimplemented from QDialog.accept() to save history of the combobox
+ Reimplemented from TQDialog.accept() to save history of the combobox
+ @short Reimplemented from TQDialog.accept() to save history of the combobox
*/
protected native void accept();
/** Deletes the wrapped C++ instance */