From f3820937b0c81e34217d63f433ffc1394a741f1c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 28 Dec 2023 21:15:39 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- doc/html/kfeedback_8cpp-source.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'doc/html/kfeedback_8cpp-source.html') diff --git a/doc/html/kfeedback_8cpp-source.html b/doc/html/kfeedback_8cpp-source.html index d99eb10..0c63690 100644 --- a/doc/html/kfeedback_8cpp-source.html +++ b/doc/html/kfeedback_8cpp-source.html @@ -64,17 +64,17 @@ 00047 layout->addWidget( _form ); 00048 checkSendButton(); 00049 -00050 connect( this, SIGNAL( applyClicked() ), -00051 _form, SLOT ( sendMail() ) ); +00050 connect( this, TQ_SIGNAL( applyClicked() ), +00051 _form, TQ_SLOT ( sendMail() ) ); 00052 -00053 connect( _form, SIGNAL( mailSent() ), -00054 this, SLOT ( hide() ) ); +00053 connect( _form, TQ_SIGNAL( mailSent() ), +00054 this, TQ_SLOT ( hide() ) ); 00055 -00056 connect( _form, SIGNAL( mailSent() ), -00057 this, SIGNAL( mailSent() ) ); +00056 connect( _form, TQ_SIGNAL( mailSent() ), +00057 this, TQ_SIGNAL( mailSent() ) ); 00058 -00059 connect( _form, SIGNAL( checkComplete() ), -00060 this, SLOT ( checkSendButton() ) ); +00059 connect( _form, TQ_SIGNAL( checkComplete() ), +00060 this, TQ_SLOT ( checkSendButton() ) ); 00061 } 00062 00063 @@ -115,8 +115,8 @@ 00098 _questionList = new KFeedbackQuestionList( this ); 00099 TQ_CHECK_PTR( _questionList ); 00100 -00101 connect( _questionList, SIGNAL( checkComplete() ), -00102 this, SLOT ( slotCheckComplete() ) ); +00101 connect( _questionList, TQ_SIGNAL( checkComplete() ), +00102 this, TQ_SLOT ( slotCheckComplete() ) ); 00103 00104 00105 // -- cgit v1.2.1