summaryrefslogtreecommitdiff
path: root/test/test-copy.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2019-06-16 13:37:09 +0200
committerraveit65 <[email protected]>2019-06-18 14:46:34 +0200
commite0e185b1790f5a670cdd1292bac75ad1c44e4996 (patch)
treeb5d170259858c497dbfb813c0ddb55a197a2c5ca /test/test-copy.c
parentef29013fdfd0df5d4a3cc6c5a8fb1583aabef952 (diff)
downloadcaja-e0e185b1790f5a670cdd1292bac75ad1c44e4996.tar.bz2
caja-e0e185b1790f5a670cdd1292bac75ad1c44e4996.tar.xz
Remove trailing whitespaces
find . -regextype posix-extended -regex '.*\.(c|h|ac|txt|xml)' -exec sed --in-place 's/[[:space:]]\+$//' {} \+
Diffstat (limited to 'test/test-copy.c')
-rw-r--r--test/test-copy.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/test-copy.c b/test/test-copy.c
index 520e929d..1e85a3bf 100644
--- a/test/test-copy.c
+++ b/test/test-copy.c
@@ -34,7 +34,7 @@ finished_cb (CajaProgressInfo *info,
gtk_main_quit ();
}
-int
+int
main (int argc, char* argv[])
{
GtkWidget *window;
@@ -58,11 +58,11 @@ main (int argc, char* argv[])
sources = g_list_prepend (sources, source);
}
sources = g_list_reverse (sources);
-
+
dest = g_file_new_for_commandline_arg (argv[i]);
-
+
window = test_window_new ("copy test", 5);
-
+
gtk_widget_show (window);
caja_file_operations_copy (sources,
@@ -82,9 +82,9 @@ main (int argc, char* argv[])
g_signal_connect (progress_info, "changed", (GCallback)changed_cb, NULL);
g_signal_connect (progress_info, "progress-changed", (GCallback)progress_changed_cb, NULL);
g_signal_connect (progress_info, "finished", (GCallback)finished_cb, NULL);
-
+
gtk_main ();
-
+
return 0;
}