mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Gtk code cleanups: Fix obsolete use of GtkType type.
This commit is contained in:
parent
8d1b452201
commit
8825d3feb7
@ -58,10 +58,10 @@ enum
|
||||
static GtkEventBoxClass *parent_class;
|
||||
static guint signals[LAST_SIGNAL];
|
||||
|
||||
GtkType
|
||||
GType
|
||||
gnc_popup_entry_get_type (void)
|
||||
{
|
||||
static GtkType widget_type = 0;
|
||||
static GType widget_type = 0;
|
||||
|
||||
if (!widget_type)
|
||||
{
|
||||
|
@ -59,7 +59,7 @@ struct _GncPopupEntryClass
|
||||
GtkEventBoxClass parent_class;
|
||||
};
|
||||
|
||||
GtkType gnc_popup_entry_get_type (void) G_GNUC_CONST;
|
||||
GType gnc_popup_entry_get_type (void) G_GNUC_CONST;
|
||||
|
||||
GtkWidget *gnc_popup_entry_new (void);
|
||||
|
||||
|
@ -78,7 +78,7 @@ struct _GncCellRendererPopupClass
|
||||
void (* hide_popup) (GncCellRendererPopup *cell);
|
||||
};
|
||||
|
||||
GtkType gnc_cell_renderer_popup_get_type (void) G_GNUC_CONST;
|
||||
GType gnc_cell_renderer_popup_get_type (void) G_GNUC_CONST;
|
||||
|
||||
GtkCellRenderer *gnc_cell_renderer_popup_new (void);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user