]> Pileus Git - ~andy/gtk/commitdiff
Whitespace fixes
authorMatthias Clasen <mclasen@redhat.com>
Fri, 2 Dec 2011 23:21:10 +0000 (18:21 -0500)
committerRyan Lortie <desrt@desrt.ca>
Mon, 19 Dec 2011 17:51:10 +0000 (12:51 -0500)
examples/bloatpad.c

index f09c4c59b639dee4b45d32ce9dadcb23b716a953..8cd41c1e56e8875c50398454f921db3680c059df 100644 (file)
@@ -34,28 +34,28 @@ get_clipboard (GtkWidget *widget)
 
 static void
 window_copy (GSimpleAction *action,
-            GVariant      *parameter,
-            gpointer       user_data)
+             GVariant      *parameter,
+             gpointer       user_data)
 {
   GtkWindow *window = GTK_WINDOW (user_data);
   GtkTextView *text = g_object_get_data ((GObject*)window, "bloatpad-text");
 
   gtk_text_buffer_copy_clipboard (gtk_text_view_get_buffer (text),
-                                 get_clipboard ((GtkWidget*) text));
+                                  get_clipboard ((GtkWidget*) text));
 }
 
 static void
 window_paste (GSimpleAction *action,
-             GVariant      *parameter,
-             gpointer       user_data)
+              GVariant      *parameter,
+              gpointer       user_data)
 {
   GtkWindow *window = GTK_WINDOW (user_data);
   GtkTextView *text = g_object_get_data ((GObject*)window, "bloatpad-text");
   
   gtk_text_buffer_paste_clipboard (gtk_text_view_get_buffer (text),
-                                  get_clipboard ((GtkWidget*) text),
-                                  NULL,
-                                  TRUE);
+                                   get_clipboard ((GtkWidget*) text),
+                                   NULL,
+                                   TRUE);
 
 }