diff options
Diffstat (limited to 'kppp/pppstatdlg.cpp')
| -rw-r--r-- | kppp/pppstatdlg.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/kppp/pppstatdlg.cpp b/kppp/pppstatdlg.cpp index f65c36ca..f70b379d 100644 --- a/kppp/pppstatdlg.cpp +++ b/kppp/pppstatdlg.cpp @@ -174,19 +174,19 @@ PPPStatsDlg::PPPStatsDlg(TQWidget *parent, const char *name, TQWidget *,    cancelbutton = new KPushButton(KStdGuiItem::close(),this, "cancelbutton");    cancelbutton->setFocus(); -  connect(cancelbutton, TQT_SIGNAL(clicked()), this,TQT_SLOT(cancel())); +  connect(cancelbutton, TQ_SIGNAL(clicked()), this,TQ_SLOT(cancel()));    cancelbutton->setFixedHeight(cancelbutton->sizeHint().height());    cancelbutton->setMinimumWidth(TQMAX(cancelbutton->sizeHint().width(), 70));    l12->addWidget(cancelbutton);    if(gpppdata.graphingEnabled()) {      graphTimer = new TQTimer(this); -    connect(graphTimer, TQT_SIGNAL(timeout()), TQT_SLOT(updateGraph())); +    connect(graphTimer, TQ_SIGNAL(timeout()), TQ_SLOT(updateGraph()));    }    setFixedSize(sizeHint()); -  connect(stats, TQT_SIGNAL(statsChanged(int)), TQT_SLOT(paintIcon(int))); +  connect(stats, TQ_SIGNAL(statsChanged(int)), TQ_SLOT(paintIcon(int)));    // read window position from config file    int p_x, p_y;  | 
