diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 16:39:08 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 16:39:08 -0600 |
commit | c410ec66cc4b4c62e450ced0df9197709b19f527 (patch) | |
tree | 92a41595890413374b4e92c771e5188c9da605a5 /qtjava/javalib/examples/application/ApplicationWindow.java | |
parent | 5efb4bb52888eefcf27750194953d14b0a616b89 (diff) | |
download | tdebindings-c410ec66cc4b4c62e450ced0df9197709b19f527.tar.gz tdebindings-c410ec66cc4b4c62e450ced0df9197709b19f527.zip |
Fix aboutTQt
Diffstat (limited to 'qtjava/javalib/examples/application/ApplicationWindow.java')
-rw-r--r-- | qtjava/javalib/examples/application/ApplicationWindow.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qtjava/javalib/examples/application/ApplicationWindow.java b/qtjava/javalib/examples/application/ApplicationWindow.java index 8e393df2..f214d240 100644 --- a/qtjava/javalib/examples/application/ApplicationWindow.java +++ b/qtjava/javalib/examples/application/ApplicationWindow.java @@ -159,7 +159,7 @@ public class ApplicationWindow extends TQMainWindow { menuBar().insertSeparator(); menuBar().insertItem("&Help", help); help.insertItem("&About", this, SLOT("about()"), new TQKeySequence(Key_F1), -1, -1); - help.insertItem("About &Qt", this, SLOT("aboutQt()")); + help.insertItem("About &Qt", this, SLOT("aboutTQt()")); help.insertSeparator(); help.insertItem("What's &This", this, SLOT("whatsThis()"), new TQKeySequence(SHIFT+Key_F1), -1, -1); @@ -312,7 +312,7 @@ public class ApplicationWindow extends TQMainWindow { } - private void aboutQt() { - TQMessageBox.aboutQt(this, "Qt Application Example"); + private void aboutTQt() { + TQMessageBox.aboutTQt(this, "Qt Application Example"); } } |