summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Soriano <csoriano@gnome.org>2017-08-21 21:22:54 +0200
committerCarlos Soriano <csoriano@gnome.org>2017-08-21 21:23:26 +0200
commite429edcb4f0e2c5c278bc3d06880adc2ee994b10 (patch)
treeebb36fe2b030e4c9adeb1c86e04de0c4dfc1c385
parentcdaa16ab07c3296288e2dc668b3e5d8df7ca7145 (diff)
downloadnautilus-e429edcb4f0e2c5c278bc3d06880adc2ee994b10.tar.gz
files-view: Fix identation
-rw-r--r--src/nautilus-files-view.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/nautilus-files-view.c b/src/nautilus-files-view.c
index 5aacf2c8c..b5402a87b 100644
--- a/src/nautilus-files-view.c
+++ b/src/nautilus-files-view.c
@@ -6673,7 +6673,7 @@ file_mount_callback (NautilusFile *file,
/* Translators: %s is a file name formatted for display */
text = g_strdup_printf (_("Unable to access “%s”"), name);
show_error_dialog (text, error->message,
- GTK_WINDOW (nautilus_files_view_get_window (view)));
+ GTK_WINDOW (nautilus_files_view_get_window (view)));
g_free (text);
g_free (name);
}
@@ -6701,7 +6701,7 @@ file_unmount_callback (NautilusFile *file,
/* Translators: %s is a file name formatted for display */
text = g_strdup_printf (_("Unable to remove “%s”"), name);
show_error_dialog (text, error->message,
- GTK_WINDOW (nautilus_files_view_get_window (view)));
+ GTK_WINDOW (nautilus_files_view_get_window (view)));
g_free (text);
g_free (name);
}
@@ -6729,7 +6729,7 @@ file_eject_callback (NautilusFile *file,
/* Translators: %s is a file name formatted for display */
text = g_strdup_printf (_("Unable to eject “%s”"), name);
show_error_dialog (text, error->message,
- GTK_WINDOW (nautilus_files_view_get_window (view)));
+ GTK_WINDOW (nautilus_files_view_get_window (view)));
g_free (text);
g_free (name);
}
@@ -6751,8 +6751,8 @@ file_stop_callback (NautilusFile *file,
error->code != G_IO_ERROR_FAILED_HANDLED)))
{
show_error_dialog (_("Unable to stop drive"),
- error->message,
- GTK_WINDOW (nautilus_files_view_get_window (view)));
+ error->message,
+ GTK_WINDOW (nautilus_files_view_get_window (view)));
}
}
@@ -6864,7 +6864,7 @@ file_start_callback (NautilusFile *file,
/* Translators: %s is a file name formatted for display */
text = g_strdup_printf (_("Unable to start “%s”"), name);
show_error_dialog (text, error->message,
- GTK_WINDOW (nautilus_files_view_get_window (view)));
+ GTK_WINDOW (nautilus_files_view_get_window (view)));
g_free (text);
g_free (name);
}