From 40393e30bb743346b6b40bf130da35419c12ebdc Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 13 Jan 2024 17:34:53 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit 1329ec6abbcb7b79cd960e0ca138f16598d5f11f) --- kppp/pppstatdlg.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kppp/pppstatdlg.cpp') 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; -- cgit v1.2.1