diff options
author | Michele Calgaro <[email protected]> | 2024-01-04 10:29:06 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-06 19:53:19 +0900 |
commit | 483545c2b890016403048fe55037c58bbdc339ab (patch) | |
tree | 2dac88699fb0c98389e7c87cacca6286984fdab6 /src/findduplicates.cpp | |
parent | 584744b2c188ef5d2dea7384ee79c4c6e1ba6838 (diff) | |
download | kbibtex-483545c2b890016403048fe55037c58bbdc339ab.tar.gz kbibtex-483545c2b890016403048fe55037c58bbdc339ab.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 0a7295d1f8d11fd67a215215fa6a3ef1ad0e1b06)
Diffstat (limited to 'src/findduplicates.cpp')
-rw-r--r-- | src/findduplicates.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/findduplicates.cpp b/src/findduplicates.cpp index 00e7240..ed0a4ba 100644 --- a/src/findduplicates.cpp +++ b/src/findduplicates.cpp @@ -56,7 +56,7 @@ namespace KBibTeX TQApplication::setOverrideCursor( TQt::waitCursor ); KProgressDialog *progDlg = new KProgressDialog( parent, NULL, i18n( "Find Duplicates" ), i18n( "Searching for duplicates..." ), true ); - connect( progDlg, SIGNAL( cancelClicked() ), this, SLOT( slotCancel() ) ); + connect( progDlg, TQ_SIGNAL( cancelClicked() ), this, TQ_SLOT( slotCancel() ) ); progDlg->progressBar()->setTotalSteps( len ); determineDistances( file, distVector, mapElementToIndex, progDlg ); |