summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/mainwindow.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp
index 02f8451..b143361 100644
--- a/noncore/apps/opie-console/mainwindow.cpp
+++ b/noncore/apps/opie-console/mainwindow.cpp
@@ -258,14 +258,18 @@ void MainWindow::slotRunScript() {
}
}
*/
}
void MainWindow::slotConnect() {
- if ( currentSession() )
- currentSession()->layer()->open();
+ if ( currentSession() ) {
+ bool ret = currentSession()->layer()->open();
+ if(!ret) QMessageBox::warning(currentSession()->widgetStack(),
+ QObject::tr("Failed"),
+ QObject::tr("Connecting failed for this session."));
+ }
}
void MainWindow::slotDisconnect() {
if ( currentSession() )
currentSession()->layer()->close();
}