mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-12 05:20:17 +00:00
Use GtkType/GType instead of uint.
2001-09-06 Alex Larsson <alexl@redhat.com> * gtk/gtkbin.c: * gtk/gtkfontsel.c: * gtk/gtkspinbutton.c: * gtk/gtktipsquery.c: Use GtkType/GType instead of uint.
This commit is contained in:
parent
13cba60622
commit
bf882d4417
@ -1,3 +1,11 @@
|
||||
2001-09-06 Alex Larsson <alexl@redhat.com>
|
||||
|
||||
* gtk/gtkbin.c:
|
||||
* gtk/gtkfontsel.c:
|
||||
* gtk/gtkspinbutton.c:
|
||||
* gtk/gtktipsquery.c:
|
||||
Use GtkType/GType instead of uint.
|
||||
|
||||
Tue Sep 4 18:13:43 2001 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtkliststore.c (gtk_list_store_init): fix initial val for
|
||||
|
@ -1,3 +1,11 @@
|
||||
2001-09-06 Alex Larsson <alexl@redhat.com>
|
||||
|
||||
* gtk/gtkbin.c:
|
||||
* gtk/gtkfontsel.c:
|
||||
* gtk/gtkspinbutton.c:
|
||||
* gtk/gtktipsquery.c:
|
||||
Use GtkType/GType instead of uint.
|
||||
|
||||
Tue Sep 4 18:13:43 2001 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtkliststore.c (gtk_list_store_init): fix initial val for
|
||||
|
@ -1,3 +1,11 @@
|
||||
2001-09-06 Alex Larsson <alexl@redhat.com>
|
||||
|
||||
* gtk/gtkbin.c:
|
||||
* gtk/gtkfontsel.c:
|
||||
* gtk/gtkspinbutton.c:
|
||||
* gtk/gtktipsquery.c:
|
||||
Use GtkType/GType instead of uint.
|
||||
|
||||
Tue Sep 4 18:13:43 2001 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtkliststore.c (gtk_list_store_init): fix initial val for
|
||||
|
@ -1,3 +1,11 @@
|
||||
2001-09-06 Alex Larsson <alexl@redhat.com>
|
||||
|
||||
* gtk/gtkbin.c:
|
||||
* gtk/gtkfontsel.c:
|
||||
* gtk/gtkspinbutton.c:
|
||||
* gtk/gtktipsquery.c:
|
||||
Use GtkType/GType instead of uint.
|
||||
|
||||
Tue Sep 4 18:13:43 2001 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtkliststore.c (gtk_list_store_init): fix initial val for
|
||||
|
@ -1,3 +1,11 @@
|
||||
2001-09-06 Alex Larsson <alexl@redhat.com>
|
||||
|
||||
* gtk/gtkbin.c:
|
||||
* gtk/gtkfontsel.c:
|
||||
* gtk/gtkspinbutton.c:
|
||||
* gtk/gtktipsquery.c:
|
||||
Use GtkType/GType instead of uint.
|
||||
|
||||
Tue Sep 4 18:13:43 2001 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtkliststore.c (gtk_list_store_init): fix initial val for
|
||||
|
@ -1,3 +1,11 @@
|
||||
2001-09-06 Alex Larsson <alexl@redhat.com>
|
||||
|
||||
* gtk/gtkbin.c:
|
||||
* gtk/gtkfontsel.c:
|
||||
* gtk/gtkspinbutton.c:
|
||||
* gtk/gtktipsquery.c:
|
||||
Use GtkType/GType instead of uint.
|
||||
|
||||
Tue Sep 4 18:13:43 2001 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtkliststore.c (gtk_list_store_init): fix initial val for
|
||||
|
@ -1,3 +1,11 @@
|
||||
2001-09-06 Alex Larsson <alexl@redhat.com>
|
||||
|
||||
* gtk/gtkbin.c:
|
||||
* gtk/gtkfontsel.c:
|
||||
* gtk/gtkspinbutton.c:
|
||||
* gtk/gtktipsquery.c:
|
||||
Use GtkType/GType instead of uint.
|
||||
|
||||
Tue Sep 4 18:13:43 2001 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtkliststore.c (gtk_list_store_init): fix initial val for
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user