diff options
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkbin.c | 2 | ||||
-rw-r--r-- | gtk/gtkfontsel.c | 2 | ||||
-rw-r--r-- | gtk/gtkspinbutton.c | 2 | ||||
-rw-r--r-- | gtk/gtktipsquery.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkbin.c b/gtk/gtkbin.c index e412869b24..e43042a166 100644 --- a/gtk/gtkbin.c +++ b/gtk/gtkbin.c @@ -46,7 +46,7 @@ static GtkContainerClass *parent_class = NULL; GtkType gtk_bin_get_type (void) { - static guint bin_type = 0; + static GtkType bin_type = 0; if (!bin_type) { diff --git a/gtk/gtkfontsel.c b/gtk/gtkfontsel.c index 06d084951c..3a64503181 100644 --- a/gtk/gtkfontsel.c +++ b/gtk/gtkfontsel.c @@ -922,7 +922,7 @@ gtk_font_selection_set_preview_text (GtkFontSelection *fontsel, GtkType gtk_font_selection_dialog_get_type (void) { - static guint font_selection_dialog_type = 0; + static GtkType font_selection_dialog_type = 0; if (!font_selection_dialog_type) { diff --git a/gtk/gtkspinbutton.c b/gtk/gtkspinbutton.c index c9212c16c5..fac28a46a3 100644 --- a/gtk/gtkspinbutton.c +++ b/gtk/gtkspinbutton.c @@ -134,7 +134,7 @@ static guint spinbutton_signals[LAST_SIGNAL] = {0}; GtkType gtk_spin_button_get_type (void) { - static guint spin_button_type = 0; + static GtkType spin_button_type = 0; if (!spin_button_type) { diff --git a/gtk/gtktipsquery.c b/gtk/gtktipsquery.c index 03d2a8d821..ed16c1f730 100644 --- a/gtk/gtktipsquery.c +++ b/gtk/gtktipsquery.c @@ -84,7 +84,7 @@ static guint tips_query_signals[SIGNAL_LAST] = { 0 }; GtkType gtk_tips_query_get_type (void) { - static guint tips_query_type = 0; + static GtkType tips_query_type = 0; if (!tips_query_type) { |