summaryrefslogtreecommitdiffstats
path: root/knode/knnetaccess.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knode/knnetaccess.cpp')
-rw-r--r--knode/knnetaccess.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/knode/knnetaccess.cpp b/knode/knnetaccess.cpp
index b63ba859b..475a48e3f 100644
--- a/knode/knnetaccess.cpp
+++ b/knode/knnetaccess.cpp
@@ -42,12 +42,12 @@ KNNetAccess::KNNetAccess(TQObject *parent, const char *name )
{
if ( pipe(nntpInPipe) == -1 || pipe(nntpOutPipe) == -1 ) {
KMessageBox::error(knGlobals.topWidget, i18n("Internal error:\nFailed to open pipes for internal communication."));
- kapp->exit(1);
+ tdeApp->exit(1);
}
if ( fcntl( nntpInPipe[0], F_SETFL, O_NONBLOCK ) == -1 ||
fcntl( nntpOutPipe[0], F_SETFL, O_NONBLOCK ) == -1 ) {
KMessageBox::error(knGlobals.topWidget, i18n("Internal error:\nFailed to open pipes for internal communication."));
- kapp->exit(1);
+ tdeApp->exit(1);
}
nntpNotifier=new TQSocketNotifier(nntpInPipe[0], TQSocketNotifier::Read);
@@ -312,7 +312,7 @@ void KNNetAccess::threadDoneNntp()
bool keep=false;
if (KDialog::Accepted == TDEIO::PasswordDialog::getNameAndPassword(user, pass, &keep,
i18n("You need to supply a username and a\npassword to access this server"), false,
- kapp->makeStdCaption(i18n("Authentication Failed")),info->server(),i18n("Server:"))) {
+ tdeApp->makeStdCaption(i18n("Authentication Failed")),info->server(),i18n("Server:"))) {
info->setNeedsLogon(true);
info->setUser(user);
info->setPass(pass);