summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/keychooser/ckeychooser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/frontend/keychooser/ckeychooser.cpp')
-rw-r--r--bibletime/frontend/keychooser/ckeychooser.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/bibletime/frontend/keychooser/ckeychooser.cpp b/bibletime/frontend/keychooser/ckeychooser.cpp
index 0db5911..aad247f 100644
--- a/bibletime/frontend/keychooser/ckeychooser.cpp
+++ b/bibletime/frontend/keychooser/ckeychooser.cpp
@@ -54,7 +54,7 @@ void CKeyChooser::backInHistory() {
void CKeyChooser::backInHistory(int count) {
m_inHistoryFunction = true;
- // qWarning("go back %d items in history", count);
+ // tqWarning("go back %d items in history", count);
Q_ASSERT(m_prevKeyHistoryList.size());
@@ -63,7 +63,7 @@ void CKeyChooser::backInHistory(int count) {
//pop_front count items, the top item is then the new current key
int index = count;
while ((index > 0) && (it != m_prevKeyHistoryList.end())) {
- // qWarning("pop_front");
+ // tqWarning("pop_front");
m_nextKeyHistoryList.prepend(*it);
it = m_prevKeyHistoryList.remove(it);
@@ -86,7 +86,7 @@ void CKeyChooser::forwardInHistory() {
void CKeyChooser::forwardInHistory(int count) {
m_inHistoryFunction = true;
- // qWarning("go forward %d items in history", count);
+ // tqWarning("go forward %d items in history", count);
Q_ASSERT(m_nextKeyHistoryList.size());
@@ -94,7 +94,7 @@ void CKeyChooser::forwardInHistory(int count) {
//pop_front count-1 items, the top item is then the new current key
int index = count;
while (index > 0 && it != m_nextKeyHistoryList.end()) {
- // qWarning("pop_front");
+ // tqWarning("pop_front");
m_prevKeyHistoryList.prepend(*it);
it = m_nextKeyHistoryList.remove(it);
@@ -113,7 +113,7 @@ void CKeyChooser::forwardInHistory(int count) {
}
void CKeyChooser::addToHistory(CSwordKey* k) {
- // qWarning("addToHistory");
+ // tqWarning("addToHistory");
Q_ASSERT(!m_inHistoryFunction);
if (k && !m_inHistoryFunction) {