author | llornkcor <llornkcor> | 2005-02-06 04:52:25 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2005-02-06 04:52:25 (UTC) |
commit | 8e3d226f1ab8aea28b6100966f11adb97ee41659 (patch) (side-by-side diff) | |
tree | 8a3fd2418ad3dd83f226c0e198e5fe03d9c36f1c | |
parent | 60a856903eb688b56c61fa787ac26b6be9f6d6c4 (diff) | |
download | opie-8e3d226f1ab8aea28b6100966f11adb97ee41659.zip opie-8e3d226f1ab8aea28b6100966f11adb97ee41659.tar.gz opie-8e3d226f1ab8aea28b6100966f11adb97ee41659.tar.bz2 |
fixes #1522 - where fileselector is automatically selected when only clicking on filename.
-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 e01fbe5..6e9833e 100644 --- a/libopie2/opieui/fileselector/ofiledialog.cpp +++ b/libopie2/opieui/fileselector/ofiledialog.cpp @@ -211,46 +211,46 @@ QString OFileDialog::getSaveFileName(int selector, /** * 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(); } |