diff options
author | Michele Calgaro <[email protected]> | 2024-01-13 17:34:53 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-18 09:59:16 +0900 |
commit | 40393e30bb743346b6b40bf130da35419c12ebdc (patch) | |
tree | 9330d82486c7b3125b8275914565b324f9af523e /kppp/pppstatdlg.cpp | |
parent | 05594058244ba6a1866d5758ae412fb5afd6d727 (diff) | |
download | tdenetwork-40393e30bb743346b6b40bf130da35419c12ebdc.tar.gz tdenetwork-40393e30bb743346b6b40bf130da35419c12ebdc.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 1329ec6abbcb7b79cd960e0ca138f16598d5f11f)
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; |