author | josef <josef> | 2002-10-14 18:36:44 (UTC) |
---|---|---|
committer | josef <josef> | 2002-10-14 18:36:44 (UTC) |
commit | 481d98eabc371d473fef7c640a710c5535637750 (patch) (side-by-side diff) | |
tree | d9abf610d40d761109ced904a6b9618e28cd9022 | |
parent | 66e2630b56989e149a04159d5273ec5cc1661dff (diff) | |
download | opie-481d98eabc371d473fef7c640a710c5535637750.zip opie-481d98eabc371d473fef7c640a710c5535637750.tar.gz opie-481d98eabc371d473fef7c640a710c5535637750.tar.bz2 |
- display warning if connection cannot be established
-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 8 |
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 @@ -261,8 +261,12 @@ 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() { |