diff options
author | Michele Calgaro <[email protected]> | 2025-01-22 17:48:33 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 22:55:29 +0900 |
commit | ba759c68a0d76f3bd39cca9cc62c2b31bf4a5f86 (patch) | |
tree | 12e785c7a4e4cabbac960f2743de01a79ba77c2f /src/fetch/z3950connection.cpp | |
parent | 0ed59f2f132ebbe7b340ea93ea1de240e712473e (diff) | |
download | tellico-ba759c68a0d76f3bd39cca9cc62c2b31bf4a5f86.tar.gz tellico-ba759c68a0d76f3bd39cca9cc62c2b31bf4a5f86.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/fetch/z3950connection.cpp')
-rw-r--r-- | src/fetch/z3950connection.cpp | 8 |
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_)); } } |