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/ppplog.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/ppplog.cpp')
-rw-r--r-- | kppp/ppplog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kppp/ppplog.cpp b/kppp/ppplog.cpp index 8ca0a652..590c15bc 100644 --- a/kppp/ppplog.cpp +++ b/kppp/ppplog.cpp @@ -265,10 +265,10 @@ void PPPL_ShowLog() { for(uint i = 0; i < result.count(); i++) diagnosis->append(*result.at(i)); - dlg->connect(close, TQT_SIGNAL(clicked()), - dlg, TQT_SLOT(reject())); - dlg->connect(write, TQT_SIGNAL(clicked()), - dlg, TQT_SLOT(accept())); + dlg->connect(close, TQ_SIGNAL(clicked()), + dlg, TQ_SLOT(reject())); + dlg->connect(write, TQ_SIGNAL(clicked()), + dlg, TQ_SLOT(accept())); if(dlg->exec()) { TQDir d = TQDir::home(); |