diff options
author | Michele Calgaro <[email protected]> | 2024-01-13 17:34:53 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-13 17:51:33 +0900 |
commit | 1329ec6abbcb7b79cd960e0ca138f16598d5f11f (patch) | |
tree | 8b64fab3a352aada6a046f69f1f7e8a6ad819594 /kppp/loginterm.cpp | |
parent | 69c2eb8d5f2ed64c876b2a1081cc83ed9f4652d3 (diff) | |
download | tdenetwork-1329ec6abbcb7b79cd960e0ca138f16598d5f11f.tar.gz tdenetwork-1329ec6abbcb7b79cd960e0ca138f16598d5f11f.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
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))); } |