aboutsummaryrefslogtreecommitdiffstats
path: root/embed/mozilla/mozilla-embed-single.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'embed/mozilla/mozilla-embed-single.cpp')
-rw-r--r--embed/mozilla/mozilla-embed-single.cpp27
1 files changed, 12 insertions, 15 deletions
diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp
index 211d2eb30..d865c6881 100644
--- a/embed/mozilla/mozilla-embed-single.cpp
+++ b/embed/mozilla/mozilla-embed-single.cpp
@@ -1100,6 +1100,7 @@ impl_show_file_picker (EphyEmbedSingle *shell,
int *ret_file_format)
{
gchar *expanded_directory;
+ gresult result;
GFilePicker *filePicker = new GFilePicker (file_formats);
@@ -1132,19 +1133,15 @@ impl_show_file_picker (EphyEmbedSingle *shell,
*ret_file_format = filePicker->mSelectedFileFormat;
}
- if (retval == nsIFilePicker::returnCancel)
- {
- delete filePicker;
- return G_FAILED;
- }
- else
- {
- nsCOMPtr<nsILocalFile> file;
- filePicker->GetFile (getter_AddRefs(file));
- nsCAutoString tempFullPathStr;
- file->GetNativePath (tempFullPathStr);
- *ret_fullpath = g_strdup (tempFullPathStr.get());
- delete filePicker;
- return G_OK;
- }
+ nsCOMPtr<nsILocalFile> local_file;
+ filePicker->GetFile (getter_AddRefs(local_file));
+ nsCAutoString tempFullPathStr;
+ local_file->GetNativePath (tempFullPathStr);
+ *ret_fullpath = g_strdup (tempFullPathStr.get());
+
+ result = (retval == nsIFilePicker::returnCancel) ? G_FAILED : G_OK;
+
+ delete filePicker;
+
+ return result;
}