summaryrefslogtreecommitdiffstats
path: root/clients/tde/src/app
diff options
context:
space:
mode:
Diffstat (limited to 'clients/tde/src/app')
-rw-r--r--clients/tde/src/app/remotemdi.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/clients/tde/src/app/remotemdi.cpp b/clients/tde/src/app/remotemdi.cpp
index 3ecf181..3e5c075 100644
--- a/clients/tde/src/app/remotemdi.cpp
+++ b/clients/tde/src/app/remotemdi.cpp
@@ -168,7 +168,11 @@ void RemoteMDI::connectToServer() {
connectionTimeout.stop();
if (m_rsvSvrSocket->state() == TQSocket::Connected) {
printf("[DEBUG] Initial connection established...\n\r"); fflush(stdout);
- if (m_rsvSvrSocket->setUsingKerberos(true) != 0) {
+ m_rsvSvrSocket->setUsingKerberos(true);
+ while (m_rsvSvrSocket->kerberosStatus() == TDEKerberosClientSocket::KerberosInitializing) {
+ tqApp->processEvents();
+ }
+ if (m_rsvSvrSocket->kerberosStatus() != TDEKerberosClientSocket::KerberosInUse) {
disconnectFromServer();
KMessageBox::error(this, i18n("<qt>Unable to establish Kerberos protocol with remote server<p>Please verify that you currently hold a valid Kerberos ticket</qt>"), i18n("Connection Failed"));
}
@@ -344,11 +348,7 @@ void RemoteMDI::childWindowCloseRequest(KMdiChildView *pWnd) {
iview->closeConnections();
iview->hide();
- // RAJA FIXME
- // Executing KMdiMainFrm::childWindowCloseRequest(pWnd) here will probably cause a crash
- // We need to call this AFTER control has been returned to the main event loop at least once
- // This is related to my lack of proper returning to the event loop, which MUST BE FIXED
-// KMdiMainFrm::childWindowCloseRequest(pWnd); // RAJA UNCOMMENT ME
+ KMdiMainFrm::childWindowCloseRequest(pWnd);
}
}