diff options
author | rbuj <[email protected]> | 2019-06-16 13:37:09 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-06-18 14:46:34 +0200 |
commit | e0e185b1790f5a670cdd1292bac75ad1c44e4996 (patch) | |
tree | b5d170259858c497dbfb813c0ddb55a197a2c5ca /test/test-eel-labeled-image.c | |
parent | ef29013fdfd0df5d4a3cc6c5a8fb1583aabef952 (diff) | |
download | caja-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-eel-labeled-image.c')
-rw-r--r-- | test/test-eel-labeled-image.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test-eel-labeled-image.c b/test/test-eel-labeled-image.c index 22e66a00..b5dd7f22 100644 --- a/test/test-eel-labeled-image.c +++ b/test/test-eel-labeled-image.c @@ -10,7 +10,7 @@ button_callback (GtkWidget *button, { const char *info = callback_data; g_return_if_fail (GTK_IS_BUTTON (button)); - + g_print ("%s(%p)\n", info, button); } @@ -51,11 +51,11 @@ labeled_image_button_window_new (const char *title, } gtk_widget_show_all (vbox); - + return window; } -int +int main (int argc, char* argv[]) { GtkWidget *labeled_image_window = NULL; @@ -71,7 +71,7 @@ main (int argc, char* argv[]) if (labeled_image_window) gtk_widget_show (labeled_image_window); if (labeled_image_button_window) gtk_widget_show (labeled_image_button_window); - + gtk_main (); return test_quit (EXIT_SUCCESS); |