diff options
Diffstat (limited to 'src/findduplicates.cpp')
-rw-r--r-- | src/findduplicates.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/findduplicates.cpp b/src/findduplicates.cpp index 00e7240..bba1e66 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 ); @@ -413,7 +413,7 @@ namespace KBibTeX return -1; /** no value item found or is empty */ /** parse value item's text */ - bool ok = FALSE; + bool ok = false; int year = TQString( valueItem->text() ).toInt( &ok ); if ( !ok ) year = -1; |