summaryrefslogtreecommitdiffstats
path: root/kppp/modems.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kppp/modems.cpp')
-rw-r--r--kppp/modems.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kppp/modems.cpp b/kppp/modems.cpp
index 84b0979e..9cbe6d9a 100644
--- a/kppp/modems.cpp
+++ b/kppp/modems.cpp
@@ -50,17 +50,17 @@
void parseargs(char* buf, char** args);
-ModemsWidget::ModemsWidget( TQWidget *tqparent, const char *name )
- : TQWidget( tqparent, name )
+ModemsWidget::ModemsWidget( TQWidget *parent, const char *name )
+ : TQWidget( parent, name )
{
int min = 0;
- TQVBoxLayout *l1 = new TQVBoxLayout(tqparent, 10, 10);
+ TQVBoxLayout *l1 = new TQVBoxLayout(parent, 10, 10);
// add a hbox
TQHBoxLayout *l11 = new TQHBoxLayout;
l1->addLayout(l11);
- modemlist_l = new TQListBox(tqparent);
+ modemlist_l = new TQListBox(parent);
modemlist_l->setMinimumSize(160, 128);
connect(modemlist_l, TQT_SIGNAL(highlighted(int)),
this, TQT_SLOT(slotListBoxSelect(int)));
@@ -70,7 +70,7 @@ ModemsWidget::ModemsWidget( TQWidget *tqparent, const char *name )
TQVBoxLayout *l111 = new TQVBoxLayout;
l11->addLayout(l111, 1);
- edit_b = new TQPushButton(i18n("&Edit..."), tqparent);
+ edit_b = new TQPushButton(i18n("&Edit..."), parent);
connect(edit_b, TQT_SIGNAL(clicked()), TQT_SLOT(editmodem()));
TQWhatsThis::add(edit_b, i18n("Allows you to modify the selected account"));
@@ -80,13 +80,13 @@ ModemsWidget::ModemsWidget( TQWidget *tqparent, const char *name )
l111->addWidget(edit_b);
- new_b = new TQPushButton(i18n("&New..."), tqparent);
+ new_b = new TQPushButton(i18n("&New..."), parent);
connect(new_b, TQT_SIGNAL(clicked()), TQT_SLOT(newmodem()));
l111->addWidget(new_b);
TQWhatsThis::add(new_b, i18n("Create a new dialup connection\n"
"to the Internet"));
- copy_b = new TQPushButton(i18n("Co&py"), tqparent);
+ copy_b = new TQPushButton(i18n("Co&py"), parent);
connect(copy_b, TQT_SIGNAL(clicked()), TQT_SLOT(copymodem()));
l111->addWidget(copy_b);
TQWhatsThis::add(copy_b,
@@ -95,7 +95,7 @@ ModemsWidget::ModemsWidget( TQWidget *tqparent, const char *name )
"to a new account that you can modify to fit your\n"
"needs"));
- delete_b = new TQPushButton(i18n("De&lete"), tqparent);
+ delete_b = new TQPushButton(i18n("De&lete"), parent);
connect(delete_b, TQT_SIGNAL(clicked()), TQT_SLOT(deletemodem()));
l111->addWidget(delete_b);
TQWhatsThis::add(delete_b,