author | zecke <zecke> | 2005-02-06 11:15:32 (UTC) |
---|---|---|
committer | zecke <zecke> | 2005-02-06 11:15:32 (UTC) |
commit | c1d8b585ac60438bfb237579da829b4110204009 (patch) (side-by-side diff) | |
tree | 81848a11c6b006ed4b6ac5a036de8402dde8e25d /libopie2 | |
parent | 8e3d226f1ab8aea28b6100966f11adb97ee41659 (diff) | |
download | opie-c1d8b585ac60438bfb237579da829b4110204009.zip opie-c1d8b585ac60438bfb237579da829b4110204009.tar.gz opie-c1d8b585ac60438bfb237579da829b4110204009.tar.bz2 |
Sorry lorn the patch is inapproriate.
1.) one click 'accept' is the wished feature and makes sense for
opening files.
2.) Just uncommenting code that is not used is bad, we've cvs you can
remove the lines
Now I'll revert and afterwards I'll patch OFileDialog again and please
tell me if that works for you as well.
-rw-r--r-- | libopie2/opieui/fileselector/ofiledialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libopie2/opieui/fileselector/ofiledialog.cpp b/libopie2/opieui/fileselector/ofiledialog.cpp index 6e9833e..e01fbe5 100644 --- a/libopie2/opieui/fileselector/ofiledialog.cpp +++ b/libopie2/opieui/fileselector/ofiledialog.cpp @@ -195,62 +195,62 @@ QString OFileDialog::getSaveFileName(int selector, QString ret; QString startDir = _startDir; if (startDir.isEmpty() ) startDir = lastUsedDir( "FileDialog-SAVE" ); OFileDialog dlg( caption.isEmpty() ? tr("Save") : caption, wid, OFileSelector::Save, selector, startDir, file, mimes); if( QPEApplication::execDialog(&dlg) ) { ret = dlg.fileName(); saveLastDir( "FileDialog-SAVE", ret ); } return ret; } /** * This opens up a filedialog in select directory mode * * @param selector the Selector Mode * @param startDir Where to start from * @param wid the parent * @param caption of the dialog if QString::null tr("Open") will be used * @return the directoryName or QString::null */ QString OFileDialog::getDirectory(int selector, const QString &_startDir, QWidget *wid, const QString &caption ) { QString ret; QString startDir = _startDir; if ( startDir.isEmpty() ) startDir = lastUsedDir( "FileDialog-SELECTDIR" ); OFileDialog dlg( caption.isEmpty() ? tr( "Select Directory" ) : caption, wid, OFileSelector::DirectorySelector, selector, startDir ); if ( QPEApplication::execDialog(&dlg) ) { ret = dlg.fileName(); saveLastDir( "FileDialog-SELECTDIR", ret ); } return ret; } void OFileDialog::slotFileSelected(const QString & ) { -// accept(); + accept(); } void OFileDialog::slotSelectorOk( ) { -// accept(); + accept(); } void OFileDialog::slotDirSelected(const QString &dir ) { setCaption( dir ); // if mode //accept(); } |