summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KBugReport.java
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-22 20:16:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-22 20:16:43 -0600
commit8f7ac92d27834427c1fa2a4a350d70d05529bbf4 (patch)
treefc53a45a5d9693bfe8a156579b921e960351e31c /kdejava/koala/org/kde/koala/KBugReport.java
parent427847240b11c1733dd9c259c613d68a6405fe68 (diff)
downloadtdebindings-8f7ac92d27834427c1fa2a4a350d70d05529bbf4.tar.gz
tdebindings-8f7ac92d27834427c1fa2a4a350d70d05529bbf4.zip
Rename KInstance and KAboutData to avoid conflicts with KDE4
Diffstat (limited to 'kdejava/koala/org/kde/koala/KBugReport.java')
-rw-r--r--kdejava/koala/org/kde/koala/KBugReport.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdejava/koala/org/kde/koala/KBugReport.java b/kdejava/koala/org/kde/koala/KBugReport.java
index 05c7edae..42384963 100644
--- a/kdejava/koala/org/kde/koala/KBugReport.java
+++ b/kdejava/koala/org/kde/koala/KBugReport.java
@@ -10,8 +10,8 @@ import org.kde.qt.TQWidget;
All the information needed by the dialog box
(program name, version, bug-report address, etc.)
- comes from the KAboutData class.
- Make sure you create an instance of KAboutData and pass it
+ comes from the TDEAboutData class.
+ Make sure you create an instance of TDEAboutData and pass it
to TDECmdLineArgs.
@author David Faure <faure@kde.org>
@@ -29,11 +29,11 @@ public class KBugReport extends KDialogBase {
for "Report Bug..." and of creating a KBugReport dialog.
@short Creates a bug-report dialog.
*/
- public KBugReport(TQWidget parent, boolean modal, KAboutData aboutData) {
+ public KBugReport(TQWidget parent, boolean modal, TDEAboutData aboutData) {
super((Class) null);
newKBugReport(parent,modal,aboutData);
}
- private native void newKBugReport(TQWidget parent, boolean modal, KAboutData aboutData);
+ private native void newKBugReport(TQWidget parent, boolean modal, TDEAboutData aboutData);
public KBugReport(TQWidget parent, boolean modal) {
super((Class) null);
newKBugReport(parent,modal);