summaryrefslogtreecommitdiffstats
path: root/bibletime/bibletime_dcop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/bibletime_dcop.cpp')
-rw-r--r--bibletime/bibletime_dcop.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/bibletime/bibletime_dcop.cpp b/bibletime/bibletime_dcop.cpp
index 1d8e798..6318ab7 100644
--- a/bibletime/bibletime_dcop.cpp
+++ b/bibletime/bibletime_dcop.cpp
@@ -23,7 +23,7 @@
//helper function
void BibleTime::syncAllModulesByType(const CSwordModuleInfo::ModuleType type, const TQString& key) {
- qDebug("Syncing modules by type to key %s", key.latin1());
+ tqDebug("Syncing modules by type to key %s", key.latin1());
TQPtrList<TQWidget> windows = m_mdi->usableWindowList();
for (TQWidget* w = windows.first(); w; w = windows.next()) {
@@ -37,34 +37,34 @@ void BibleTime::syncAllModulesByType(const CSwordModuleInfo::ModuleType type, co
}
void BibleTime::closeAllModuleWindows() {
- qDebug("DCOP: close all windows now...");
+ tqDebug("DCOP: close all windows now...");
m_mdi->deleteAll();
}
void BibleTime::syncAllBibles(const TQString& key) {
- qDebug("DCOP: syncing all bibles ...");
+ tqDebug("DCOP: syncing all bibles ...");
syncAllModulesByType(CSwordModuleInfo::Bible, key);
}
void BibleTime::syncAllCommentaries(const TQString& key) {
- qDebug("DCOP: syncing all commentaries ...");
+ tqDebug("DCOP: syncing all commentaries ...");
syncAllModulesByType(CSwordModuleInfo::Commentary, key);
}
void BibleTime::syncAllLexicons(const TQString& key) {
- qDebug("DCOP: syncing all lexicons ...");
+ tqDebug("DCOP: syncing all lexicons ...");
syncAllModulesByType(CSwordModuleInfo::Lexicon, key);
}
void BibleTime::syncAllVerseBasedModules(const TQString& key) {
- qDebug("DCOP: syncing all verse based modules ...");
+ tqDebug("DCOP: syncing all verse based modules ...");
syncAllModulesByType(CSwordModuleInfo::Bible, key);
syncAllModulesByType(CSwordModuleInfo::Commentary, key);
}
void BibleTime::openWindow(const TQString& moduleName, const TQString& key) {
- qDebug("DCOP: open window for module %s and key %s...", moduleName.latin1(), key.latin1());
+ tqDebug("DCOP: open window for module %s and key %s...", moduleName.latin1(), key.latin1());
CSwordModuleInfo* module = CPointers::backend()->findModuleByName(moduleName);
Q_ASSERT(module);
@@ -74,7 +74,7 @@ void BibleTime::openWindow(const TQString& moduleName, const TQString& key) {
}
void BibleTime::openDefaultBible(const TQString& key) {
- qDebug("DCOP: open default bible ...");
+ tqDebug("DCOP: open default bible ...");
CSwordModuleInfo* mod = CBTConfig::get
(CBTConfig::standardBible);
if (mod) {
@@ -83,7 +83,7 @@ void BibleTime::openDefaultBible(const TQString& key) {
}
TQStringList BibleTime::searchInModule(const TQString& moduleName, const TQString& searchText) {
- qDebug("DCOP: searchInModule %s ...", moduleName.latin1());
+ tqDebug("DCOP: searchInModule %s ...", moduleName.latin1());
TQStringList ret;
CSwordModuleInfo* mod = CPointers::backend()->findModuleByName(moduleName);
@@ -117,7 +117,7 @@ TQStringList BibleTime::searchInModule(const TQString& moduleName, const TQStrin
}
TQStringList BibleTime::searchInOpenModules(const TQString& searchText) {
- qDebug("DCOP: search in open modules ...");
+ tqDebug("DCOP: search in open modules ...");
TQStringList ret;
TQWidgetList windows = m_mdi->windowList();
@@ -143,7 +143,7 @@ TQStringList BibleTime::searchInDefaultBible(const TQString& searchText) {
}
TQString BibleTime::getCurrentReference() {
- qDebug("BibleTime::getCurrentReference");
+ tqDebug("BibleTime::getCurrentReference");
TQString ret = TQString();
CDisplayWindow* w = dynamic_cast<CDisplayWindow*>(m_mdi->activeWindow());