diff options
author | jacob berkman <jacob@ximian.com> | 2002-04-11 19:13:49 +0000 |
---|---|---|
committer | Jacob Berkman <jberkman@src.gnome.org> | 2002-04-11 19:13:49 +0000 |
commit | 64a0eee1341f138010718266ef94b200a5cab48d (patch) | |
tree | e7cb409d941fe9679bd1c1e329a2026b9ad1b292 /libbackground/applier.c | |
parent | 1f98e3e6462430afc6ee425d96205c1daeff2cc5 (diff) | |
download | gnome-control-center-64a0eee1341f138010718266ef94b200a5cab48d.tar.gz |
fix improper use of guint as GTypeNAUTILUS_1_1_12
2002-04-11 jacob berkman <jacob@ximian.com>
* (various files): fix improper use of guint as GType
Diffstat (limited to 'libbackground/applier.c')
-rw-r--r-- | libbackground/applier.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbackground/applier.c b/libbackground/applier.c index 712c5982e..b6025a298 100644 --- a/libbackground/applier.c +++ b/libbackground/applier.c @@ -181,10 +181,10 @@ static gboolean cleanup_cb (BGApplier *bg_applier); static void preview_realized_cb (GtkWidget *preview, BGApplier *bg_applier); -guint +GType bg_applier_get_type (void) { - static guint bg_applier_type = 0; + static GType bg_applier_type = 0; if (!bg_applier_type) { static GTypeInfo bg_applier_info = { |