summaryrefslogtreecommitdiffstats
path: root/src/fetch/z3950connection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fetch/z3950connection.cpp')
-rw-r--r--src/fetch/z3950connection.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fetch/z3950connection.cpp b/src/fetch/z3950connection.cpp
index 8a58aaa..a40f6cb 100644
--- a/src/fetch/z3950connection.cpp
+++ b/src/fetch/z3950connection.cpp
@@ -261,7 +261,7 @@ void Z3950Connection::run() {
}
// save syntax change for next time
if(m_syntax != newSyntax) {
- kapp->postEvent(m_fetcher, new Z3950SyntaxChange(newSyntax));
+ tdeApp->postEvent(m_fetcher, new Z3950SyntaxChange(newSyntax));
m_syntax = newSyntax;
}
@@ -355,15 +355,15 @@ bool Z3950Connection::makeConnection() {
void Z3950Connection::done() {
checkPendingEvents();
- kapp->postEvent(m_fetcher, new Z3950ConnectionDone(m_hasMore));
+ tdeApp->postEvent(m_fetcher, new Z3950ConnectionDone(m_hasMore));
}
void Z3950Connection::done(const TQString& msg_, int type_) {
checkPendingEvents();
if(m_aborted) {
- kapp->postEvent(m_fetcher, new Z3950ConnectionDone(m_hasMore));
+ tdeApp->postEvent(m_fetcher, new Z3950ConnectionDone(m_hasMore));
} else {
- kapp->postEvent(m_fetcher, new Z3950ConnectionDone(m_hasMore, msg_, type_));
+ tdeApp->postEvent(m_fetcher, new Z3950ConnectionDone(m_hasMore, msg_, type_));
}
}