summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/keychooser/clexiconkeychooser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/frontend/keychooser/clexiconkeychooser.cpp')
-rw-r--r--bibletime/frontend/keychooser/clexiconkeychooser.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/bibletime/frontend/keychooser/clexiconkeychooser.cpp b/bibletime/frontend/keychooser/clexiconkeychooser.cpp
index 1e85d6d..9c8c174 100644
--- a/bibletime/frontend/keychooser/clexiconkeychooser.cpp
+++ b/bibletime/frontend/keychooser/clexiconkeychooser.cpp
@@ -64,7 +64,7 @@ m_key(dynamic_cast<CSwordLDKey*>(key)) {
}
CSwordKey* const CLexiconKeyChooser::key() {
- // qWarning("key");
+ // tqWarning("key");
return m_key;
}
@@ -73,17 +73,17 @@ void CLexiconKeyChooser::setKey(CSwordKey* key) {
return;
}
- // qWarning("setKey start");
+ // tqWarning("setKey start");
TQString newKey = m_key->key();
const int index = m_widget->comboBox()->listBox()->index(m_widget->comboBox()->listBox()->findItem( newKey ));
m_widget->comboBox()->setCurrentItem(index);
- // qWarning("setKey end");
+ // tqWarning("setKey end");
emit keyChanged( m_key );
}
void CLexiconKeyChooser::activated(int index) {
- // qWarning("activated");
+ // tqWarning("activated");
const TQString text = m_widget->comboBox()->text(index);
// To prevent from eternal loop, because activated() is emitted again
@@ -91,7 +91,7 @@ void CLexiconKeyChooser::activated(int index) {
m_key->key(text);
setKey(m_key);
}
- // qWarning("activated end");
+ // tqWarning("activated end");
}
inline const bool my_cmpEntries(const TQString& a, const TQString& b) {
@@ -102,7 +102,7 @@ inline const bool my_cmpEntries(const TQString& a, const TQString& b) {
void CLexiconKeyChooser::refreshContent() {
if (m_modules.count() == 1) {
m_widget->reset(m_modules.first()->entries(), 0, true);
- // qWarning("resetted");
+ // tqWarning("resetted");
}
else {
typedef std::multimap<unsigned int, TQStringList*> EntryMap;