-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index a6fc30b..3acbfad 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp @@ -411,4 +411,9 @@ void MainWindow::slotTerminate() { } + + + + + void MainWindow::slotQuickLaunch() { Profile prof = manager()->profile( "default" ); @@ -416,5 +421,7 @@ void MainWindow::slotQuickLaunch() { create( prof ); } else { - QMessageBox::warning(this, tr("Failure"),tr("please configure one profile named \"default\"")); + Profile newProf = Profile( "default", "console", "default" , 0, 3, 0 ); + newProf.setAutoConnect( true ); + create( newProf ); } |