diff options
Diffstat (limited to 'examples/gtkdial/gtkdial.c')
-rw-r--r-- | examples/gtkdial/gtkdial.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/gtkdial/gtkdial.c b/examples/gtkdial/gtkdial.c index 8bea29456..3c662f7e2 100644 --- a/examples/gtkdial/gtkdial.c +++ b/examples/gtkdial/gtkdial.c @@ -1,3 +1,5 @@ +/* example-start gtkdial gtkdial.c */ + /* GTK - The GIMP Toolkit * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald * @@ -26,7 +28,7 @@ #define SCROLL_DELAY_LENGTH 300 #define DIAL_DEFAULT_SIZE 100 -/* Forward declararations */ +/* Forward declarations */ static void gtk_dial_class_init (GtkDialClass *klass); static void gtk_dial_init (GtkDial *dial); @@ -587,5 +589,4 @@ gtk_dial_adjustment_value_changed (GtkAdjustment *adjustment, dial->old_value = adjustment->value; } } - - +/* example-end */ |