diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 2 | ||||
-rw-r--r-- | src/prefs-dialog.c | 2 | ||||
-rw-r--r-- | src/window-commands.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index fab8237a6..f789922a2 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -515,7 +515,7 @@ import_from_file_response_cb (GtkDialog *dialog, gint response, { char *filename; - if (response == EPHY_RESPONSE_OPEN) + if (response == GTK_RESPONSE_ACCEPT) { filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog)); diff --git a/src/prefs-dialog.c b/src/prefs-dialog.c index 017151c5f..1261c57f1 100644 --- a/src/prefs-dialog.c +++ b/src/prefs-dialog.c @@ -1282,7 +1282,7 @@ prefs_homepage_blank_button_clicked_cb (GtkWidget *button, static void download_path_response_cb (GtkDialog *fc, gint response, EphyDialog *dialog) { - if (response == EPHY_RESPONSE_OPEN) + if (response == GTK_RESPONSE_ACCEPT) { char *dir; diff --git a/src/window-commands.c b/src/window-commands.c index 2611dcbe6..f6618f985 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -364,7 +364,7 @@ window_cmd_file_bookmark_page (GtkAction *action, static void open_response_cb (GtkDialog *dialog, int response, EphyWindow *window) { - if (response == EPHY_RESPONSE_OPEN) + if (response == GTK_RESPONSE_ACCEPT) { char *uri, *converted; |