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/helpviewer | |
parent | 5efb4bb52888eefcf27750194953d14b0a616b89 (diff) | |
download | tdebindings-c410ec66cc4b4c62e450ced0df9197709b19f527.tar.gz tdebindings-c410ec66cc4b4c62e450ced0df9197709b19f527.zip |
Fix aboutTQt
Diffstat (limited to 'qtjava/javalib/examples/helpviewer')
-rw-r--r-- | qtjava/javalib/examples/helpviewer/HelpWindow.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qtjava/javalib/examples/helpviewer/HelpWindow.java b/qtjava/javalib/examples/helpviewer/HelpWindow.java index 1da9c337..d220d35e 100644 --- a/qtjava/javalib/examples/helpviewer/HelpWindow.java +++ b/qtjava/javalib/examples/helpviewer/HelpWindow.java @@ -79,7 +79,7 @@ HelpWindow( String home_, String _path, TQPopupMenu help = new TQPopupMenu( this ); help.insertItem( tr("&About ..."), this, SLOT(" about()") ); - help.insertItem( tr("About &Qt ..."), this, SLOT(" aboutQt()") ); + help.insertItem( tr("About &Qt ..."), this, SLOT(" aboutTQt()") ); hist = new TQPopupMenu( this ); Iterator it = history.iterator(); @@ -232,9 +232,9 @@ void about() } -void aboutQt() +void aboutTQt() { - TQMessageBox.aboutQt( this, "TQBrowser" ); + TQMessageBox.aboutTQt( this, "TQBrowser" ); } void openFile() |