summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/tools/assistant/topicchooserimpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tqtinterface/qt4/tools/assistant/topicchooserimpl.cpp')
-rw-r--r--tqtinterface/qt4/tools/assistant/topicchooserimpl.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tqtinterface/qt4/tools/assistant/topicchooserimpl.cpp b/tqtinterface/qt4/tools/assistant/topicchooserimpl.cpp
index daeedc5..d6048d2 100644
--- a/tqtinterface/qt4/tools/assistant/topicchooserimpl.cpp
+++ b/tqtinterface/qt4/tools/assistant/topicchooserimpl.cpp
@@ -37,9 +37,9 @@
#include <tqlistbox.h>
#include <tqpushbutton.h>
-TopicChooser::TopicChooser( TQWidget *tqparent, const TQStringList &lnkNames,
+TopicChooser::TopicChooser( TQWidget *parent, const TQStringList &lnkNames,
const TQStringList &lnks, const TQString &title )
- : TopicChooserBase( tqparent, 0, TRUE ), links( lnks ), linkNames( lnkNames )
+ : TopicChooserBase( parent, 0, TRUE ), links( lnks ), linkNames( lnkNames )
{
label->setText( tr( "Choose a topic for <b>%1</b>" ).arg( title ) );
listbox->insertStringList( linkNames );
@@ -58,10 +58,10 @@ TQString TopicChooser::link() const
return links[ i ];
}
-TQString TopicChooser::getLink( TQWidget *tqparent, const TQStringList &lnkNames,
+TQString TopicChooser::getLink( TQWidget *parent, const TQStringList &lnkNames,
const TQStringList &lnks, const TQString &title )
{
- TopicChooser *dlg = new TopicChooser( tqparent, lnkNames, lnks, title );
+ TopicChooser *dlg = new TopicChooser( parent, lnkNames, lnks, title );
TQString lnk;
if ( dlg->exec() == TQDialog::Accepted )
lnk = dlg->link();