diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/gtkdial/gtkdial.c | 2 | ||||
-rw-r--r-- | examples/tictactoe/tictactoe.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/gtkdial/gtkdial.c b/examples/gtkdial/gtkdial.c index 385ed420f4..4abc18472e 100644 --- a/examples/gtkdial/gtkdial.c +++ b/examples/gtkdial/gtkdial.c @@ -65,7 +65,7 @@ gtk_dial_get_type () if (!dial_type) { - static const GTypeInfo dial_info = + const GTypeInfo dial_info = { sizeof (GtkDialClass), NULL, diff --git a/examples/tictactoe/tictactoe.c b/examples/tictactoe/tictactoe.c index 34c7b2f05e..3385b1fa0d 100644 --- a/examples/tictactoe/tictactoe.c +++ b/examples/tictactoe/tictactoe.c @@ -40,7 +40,7 @@ tictactoe_get_type (void) if (!ttt_type) { - static const GTypeInfo ttt_info = + const GTypeInfo ttt_info = { sizeof (TictactoeClass), NULL, /* base_init */ |