author | zecke <zecke> | 2005-02-06 11:25:40 (UTC) |
---|---|---|
committer | zecke <zecke> | 2005-02-06 11:25:40 (UTC) |
commit | 27847dffc089bb8c89d09e7f9277c43c7590b8b8 (patch) (unidiff) | |
tree | 6a09299b5a2f1ddde4d33b9aaffa349e3a453d61 | |
parent | 1b23cd056974e3c96cc1232259c113184084530e (diff) | |
download | opie-27847dffc089bb8c89d09e7f9277c43c7590b8b8.zip opie-27847dffc089bb8c89d09e7f9277c43c7590b8b8.tar.gz opie-27847dffc089bb8c89d09e7f9277c43c7590b8b8.tar.bz2 |
For saving we do not want to use the file just selected. The user needs
to click ok when saving.
This is a fix for #1522 as well
-rw-r--r-- | libopie2/opieui/fileselector/ofiledialog.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libopie2/opieui/fileselector/ofiledialog.cpp b/libopie2/opieui/fileselector/ofiledialog.cpp index 65648ce..92d4271 100644 --- a/libopie2/opieui/fileselector/ofiledialog.cpp +++ b/libopie2/opieui/fileselector/ofiledialog.cpp | |||
@@ -193,8 +193,17 @@ QString OFileDialog::getSaveFileName(int selector, | |||
193 | startDir = lastUsedDir( "FileDialog-SAVE" ); | 193 | startDir = lastUsedDir( "FileDialog-SAVE" ); |
194 | 194 | ||
195 | OFileDialog dlg( caption.isEmpty() ? tr("Save") : caption, | 195 | OFileDialog dlg( caption.isEmpty() ? tr("Save") : caption, |
196 | wid, OFileSelector::Save, selector, startDir, file, mimes); | 196 | wid, OFileSelector::Save, selector, startDir, file, mimes); |
197 | |||
198 | /* | ||
199 | * For the save mode we do not want a file to be written | ||
200 | * if the user just clicked on it | ||
201 | * #1522 | ||
202 | */ | ||
203 | dlg.disconnect( dlg.file, SIGNAL(fileSelected(const QString&)) ); | ||
204 | dlg.disconnect( dlg.file, SIGNAL(ok()) ); | ||
205 | |||
197 | if( QPEApplication::execDialog(&dlg) ) | 206 | if( QPEApplication::execDialog(&dlg) ) |
198 | { | 207 | { |
199 | ret = dlg.fileName(); | 208 | ret = dlg.fileName(); |
200 | saveLastDir( "FileDialog-SAVE", ret ); | 209 | saveLastDir( "FileDialog-SAVE", ret ); |