summaryrefslogtreecommitdiff
authorzecke <zecke>2005-02-06 11:25:40 (UTC)
committer zecke <zecke>2005-02-06 11:25:40 (UTC)
commit27847dffc089bb8c89d09e7f9277c43c7590b8b8 (patch) (unidiff)
tree6a09299b5a2f1ddde4d33b9aaffa349e3a453d61
parent1b23cd056974e3c96cc1232259c113184084530e (diff)
downloadopie-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
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opieui/fileselector/ofiledialog.cpp9
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
@@ -194,6 +194,15 @@ QString OFileDialog::getSaveFileName(int selector,
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();