author | harlekin <harlekin> | 2005-01-11 16:03:50 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2005-01-11 16:03:50 (UTC) |
commit | 1833a9079cd7801f333ac3885b447520e44f937f (patch) (side-by-side diff) | |
tree | 4ba1b030a3747b1f22d08a9f0ea55bfb59940761 | |
parent | 4c4cdd76caea5a8be4a971892375c7c6b4f4a8b9 (diff) | |
download | opie-1833a9079cd7801f333ac3885b447520e44f937f.zip opie-1833a9079cd7801f333ac3885b447520e44f937f.tar.gz opie-1833a9079cd7801f333ac3885b447520e44f937f.tar.bz2 |
possibility to set a default path for the save log dialog and also set the initial path into the titelbar
-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index 9b615f1..21de5c0 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp @@ -27,9 +27,7 @@ using namespace Opie::Ui; /* STD */ #include <assert.h> -#ifdef EAST #include <opie2/oconfig.h> -#endif MainWindow::MainWindow(QWidget *parent, const char *name, WFlags) : QMainWindow(parent, name, WStyle_ContextHelp) { @@ -747,7 +745,10 @@ void MainWindow::slotSaveLog() { QStringList text; text << "text/plain"; map.insert(tr("Log"), text ); - QString m_logName = OFileDialog::getSaveFileName(2, QPEApplication::documentDir(), QString::null, map); + Opie::Core::OConfig cfg("opie-console"); + cfg.setGroup("defaults"); + QString startDir = cfg.readEntry("defaultlogdir", QPEApplication::documentDir() ); + QString m_logName = OFileDialog::getSaveFileName(2, startDir, QString::null, map, 0, startDir); if (m_logName.isEmpty() ) return; m_recordLog->setText( tr("Stop log") ); |