diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-02 11:37:17 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:15:03 +0900 |
| commit | bcf4fd5491e82478891ca031814e57cf3c4804c4 (patch) | |
| tree | 40434e394e27dd30c7836b14237aac4255f28403 /libk9copy/k9dvd.cpp | |
| parent | 0828ec1943c3f1b7a340501e37983c148a1a43e3 (diff) | |
| download | k9copy-bcf4fd54.tar.gz k9copy-bcf4fd54.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 29a878ff9db7fe75caae6f8cebaad3b3afea3f7b)
Diffstat (limited to 'libk9copy/k9dvd.cpp')
| -rw-r--r-- | libk9copy/k9dvd.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libk9copy/k9dvd.cpp b/libk9copy/k9dvd.cpp index 6b38063..c3d0684 100644 --- a/libk9copy/k9dvd.cpp +++ b/libk9copy/k9dvd.cpp @@ -312,10 +312,10 @@ int k9DVD::scandvd (const TQString & device,bool _quickScan) { m_progressDlg->setpbTitleStep(0); m_progressDlg->setpbTotalStep(0); - connect(this, TQT_SIGNAL(sigVobProgress(unsigned int,unsigned int)), this, TQT_SLOT(slotVobProgress(unsigned int,unsigned int))); - connect(this, TQT_SIGNAL(sigTitleProgress(unsigned int,unsigned int)), this, TQT_SLOT(slotTitleProgress(unsigned int,unsigned int))); - connect(this, TQT_SIGNAL(sigTitleText(TQString&)), this, TQT_SLOT(slotTitleText(TQString&))); - connect(this, TQT_SIGNAL(sigTotalText(TQString&)), this, TQT_SLOT(slotTotalText(TQString&))); + connect(this, TQ_SIGNAL(sigVobProgress(unsigned int,unsigned int)), this, TQ_SLOT(slotVobProgress(unsigned int,unsigned int))); + connect(this, TQ_SIGNAL(sigTitleProgress(unsigned int,unsigned int)), this, TQ_SLOT(slotTitleProgress(unsigned int,unsigned int))); + connect(this, TQ_SIGNAL(sigTitleText(TQString&)), this, TQ_SLOT(slotTitleText(TQString&))); + connect(this, TQ_SIGNAL(sigTotalText(TQString&)), this, TQ_SLOT(slotTotalText(TQString&))); m_progressDlg->show(); } else m_progressDlg=NULL; |
