diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2010-04-26 17:05:05 +0200 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2010-04-26 17:05:05 +0200 |
commit | a7336c72c6f6cc0b0340e218fd123bcdddb144b9 (patch) | |
tree | 1619e1a0e8a63058b09e41d3391842ed9685982f /libnautilus-private/nautilus-mime-actions.c | |
parent | d63623cee6ac5cbbb74f6f31a7afa660d2037cbe (diff) | |
download | nautilus-a7336c72c6f6cc0b0340e218fd123bcdddb144b9.tar.gz |
Always set the parent window in dialogs (#573788).
Diffstat (limited to 'libnautilus-private/nautilus-mime-actions.c')
-rw-r--r-- | libnautilus-private/nautilus-mime-actions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libnautilus-private/nautilus-mime-actions.c b/libnautilus-private/nautilus-mime-actions.c index 77d933a02..b97ca7ced 100644 --- a/libnautilus-private/nautilus-mime-actions.c +++ b/libnautilus-private/nautilus-mime-actions.c @@ -1922,7 +1922,7 @@ activation_mount_not_mounted_callback (GObject *source_object, error->code != G_IO_ERROR_FAILED_HANDLED && error->code != G_IO_ERROR_ALREADY_MOUNTED)) { eel_show_error_dialog (_("Unable to mount location"), - error->message, NULL); + error->message, parameters->parent_window); } if (error->domain != G_IO_ERROR || @@ -2195,7 +2195,7 @@ activation_mountable_mounted (NautilusFile *file, error->code != G_IO_ERROR_FAILED_HANDLED && error->code != G_IO_ERROR_ALREADY_MOUNTED)) { eel_show_error_dialog (_("Unable to mount location"), - error->message, NULL); + error->message, parameters->parent_window); } if (error->code == G_IO_ERROR_CANCELLED) { |