diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
commit | 9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch) | |
tree | c81c34dae2b3b1ea73801bf18a960265dc4207f7 /qtjava/javalib/org/kde/qt/QBrush.java | |
parent | 1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff) | |
download | tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip |
Initial TQt conversion
Diffstat (limited to 'qtjava/javalib/org/kde/qt/QBrush.java')
-rw-r--r-- | qtjava/javalib/org/kde/qt/QBrush.java | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/qtjava/javalib/org/kde/qt/QBrush.java b/qtjava/javalib/org/kde/qt/QBrush.java index f987fa4d..3f324da4 100644 --- a/qtjava/javalib/org/kde/qt/QBrush.java +++ b/qtjava/javalib/org/kde/qt/QBrush.java @@ -3,46 +3,46 @@ package org.kde.qt; import org.kde.qt.Qt; -public class QBrush extends Qt { - protected QBrush(Class dummy){super((Class) null);} - public QBrush() { +public class TQBrush extends Qt { + protected TQBrush(Class dummy){super((Class) null);} + public TQBrush() { super((Class) null); - newQBrush(); + newTQBrush(); } - private native void newQBrush(); - public QBrush(int arg1) { + private native void newTQBrush(); + public TQBrush(int arg1) { super((Class) null); - newQBrush(arg1); + newTQBrush(arg1); } - private native void newQBrush(int arg1); - public QBrush(QColor arg1, int arg2) { + private native void newTQBrush(int arg1); + public TQBrush(TQColor arg1, int arg2) { super((Class) null); - newQBrush(arg1,arg2); + newTQBrush(arg1,arg2); } - private native void newQBrush(QColor arg1, int arg2); - public QBrush(QColor arg1) { + private native void newTQBrush(TQColor arg1, int arg2); + public TQBrush(TQColor arg1) { super((Class) null); - newQBrush(arg1); + newTQBrush(arg1); } - private native void newQBrush(QColor arg1); - public QBrush(QColor arg1, QPixmap arg2) { + private native void newTQBrush(TQColor arg1); + public TQBrush(TQColor arg1, TQPixmap arg2) { super((Class) null); - newQBrush(arg1,arg2); + newTQBrush(arg1,arg2); } - private native void newQBrush(QColor arg1, QPixmap arg2); - public QBrush(QBrush arg1) { + private native void newTQBrush(TQColor arg1, TQPixmap arg2); + public TQBrush(TQBrush arg1) { super((Class) null); - newQBrush(arg1); + newTQBrush(arg1); } - private native void newQBrush(QBrush arg1); + private native void newTQBrush(TQBrush arg1); public native int style(); public native void setStyle(int arg1); - public native QColor color(); - public native void setColor(QColor arg1); - public native QPixmap pixmap(); - public native void setPixmap(QPixmap arg1); - public native boolean op_equals(QBrush p); - public native boolean op_not_equals(QBrush b); + public native TQColor color(); + public native void setColor(TQColor arg1); + public native TQPixmap pixmap(); + public native void setPixmap(TQPixmap arg1); + public native boolean op_equals(TQBrush p); + public native boolean op_not_equals(TQBrush b); /** Deletes the wrapped C++ instance */ protected native void finalize() throws InternalError; /** Delete the wrapped C++ instance ahead of finalize() */ |