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/loginterm.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/loginterm.cpp')
-rw-r--r-- | kppp/loginterm.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kppp/loginterm.cpp b/kppp/loginterm.cpp index a663e9b2..e5c4f3f1 100644 --- a/kppp/loginterm.cpp +++ b/kppp/loginterm.cpp @@ -116,11 +116,11 @@ LoginTerm::LoginTerm (TQWidget *parent, const char *name) cancel_b = new KPushButton(KStdGuiItem::cancel(), this, "cancel"); cancel_b->setFixedHeight(25); - connect(cancel_b, TQT_SIGNAL(clicked()), TQT_SLOT(cancelbutton())); + connect(cancel_b, TQ_SIGNAL(clicked()), TQ_SLOT(cancelbutton())); continue_b = new KPushButton(KStdGuiItem::cont(), this, "continue"); continue_b->setFixedHeight(25); - connect(continue_b, TQT_SIGNAL(clicked()), TQT_SLOT(continuebutton())); + connect(continue_b, TQ_SIGNAL(clicked()), TQ_SLOT(continuebutton())); int mwidth; if (cancel_b->sizeHint().width() > continue_b->sizeHint().width()) @@ -136,7 +136,7 @@ LoginTerm::LoginTerm (TQWidget *parent, const char *name) cont = false; - Modem::modem->notify(text_window, TQT_SLOT(readChar(unsigned char))); + Modem::modem->notify(text_window, TQ_SLOT(readChar(unsigned char))); } |