summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/cmoduleindexdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/frontend/cmoduleindexdialog.cpp')
-rw-r--r--bibletime/frontend/cmoduleindexdialog.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/bibletime/frontend/cmoduleindexdialog.cpp b/bibletime/frontend/cmoduleindexdialog.cpp
index 55aa596..f42d62c 100644
--- a/bibletime/frontend/cmoduleindexdialog.cpp
+++ b/bibletime/frontend/cmoduleindexdialog.cpp
@@ -32,7 +32,7 @@ CModuleIndexDialog* CModuleIndexDialog::getInstance() {
}
void CModuleIndexDialog::indexAllModules( const ListCSwordModuleInfo& modules ) {
- qDebug("indexAllModules");
+ tqDebug("indexAllModules");
if (modules.count() == 0) {
return;
}
@@ -51,7 +51,7 @@ void CModuleIndexDialog::indexAllModules( const ListCSwordModuleInfo& modules )
(*it)->connectIndexingProgress(this, TQT_SLOT(slotModuleProgress(int)));
progress->setLabel(i18n("Creating index for work %1").arg((*it)->name()));
- qDebug("Building index for work %s", (*it)->name().latin1());
+ tqDebug("Building index for work %s", (*it)->name().latin1());
(*it)->buildIndex();
@@ -64,7 +64,7 @@ void CModuleIndexDialog::indexAllModules( const ListCSwordModuleInfo& modules )
}
void CModuleIndexDialog::indexUnindexedModules( const ListCSwordModuleInfo& modules ) {
- qDebug("indexUnindexedModules");
+ tqDebug("indexUnindexedModules");
ListCSwordModuleInfo unindexedMods;
ListCSwordModuleInfo::const_iterator end_it = modules.end();
@@ -84,14 +84,14 @@ void CModuleIndexDialog::indexUnindexedModules( const ListCSwordModuleInfo& modu
\fn CModuleIndexDialog::slotModuleProgress( int percentage )
*/
void CModuleIndexDialog::slotModuleProgress( int percentage ) {
-// qDebug("progress %d", percentage);
+// tqDebug("progress %d", percentage);
progress->progressBar()->setProgress( m_currentModuleIndex * 100 + percentage );
KApplication::kApplication()->processEvents( 10 ); //10 ms only
}
void CModuleIndexDialog::slotFinished( ) {
- qDebug("indexing finished()");
+ tqDebug("indexing finished()");
progress->progressBar()->setProgress( progress->progressBar()->totalSteps() );
KApplication::kApplication()->processEvents( 1 ); //1 ms only