diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-10-01 20:15:56 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-10-01 20:15:56 +0800 |
commit | 7605ce71b58d19479c277899b50c76fb19d5d598 (patch) | |
tree | 2c6ea17f497f0a0488587cdca04c0f35ab9c81e2 /lib | |
parent | d18e3a866dfdb496f38fbd62eed1e16ab8e5deb6 (diff) | |
download | gsoc2013-epiphany-7605ce71b58d19479c277899b50c76fb19d5d598.tar.gz gsoc2013-epiphany-7605ce71b58d19479c277899b50c76fb19d5d598.tar.zst gsoc2013-epiphany-7605ce71b58d19479c277899b50c76fb19d5d598.zip |
Fix compile warnings.
2006-10-01 Christian Persch <chpe@cvs.gnome.org>
* lib/widgets/ephy-spinner.c: (ephy_spinner_images_load),
(ephy_spinner_cache_get_images), (bump_spinner_frame_cb):
* lib/widgets/testspinner.c: (add_spinner), (main):
Fix compile warnings.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/widgets/ephy-spinner.c | 6 | ||||
-rw-r--r-- | lib/widgets/testspinner.c | 3 |
2 files changed, 4 insertions, 5 deletions
diff --git a/lib/widgets/ephy-spinner.c b/lib/widgets/ephy-spinner.c index 6ce55775c..03d43b9c9 100644 --- a/lib/widgets/ephy-spinner.c +++ b/lib/widgets/ephy-spinner.c @@ -100,7 +100,7 @@ typedef struct static void ephy_spinner_cache_class_init (EphySpinnerCacheClass *klass); static void ephy_spinner_cache_init (EphySpinnerCache *cache); -static GObjectClass *ephy_spinner_cache_parent_class = NULL; +static GObjectClass *ephy_spinner_cache_parent_class; static GType ephy_spinner_cache_get_type (void) @@ -177,12 +177,12 @@ ephy_spinner_cache_data_unload (EphySpinnerCacheData *data) for (size = GTK_ICON_SIZE_INVALID; size < LAST_ICON_SIZE; ++size) { images = data->images[size]; + data->images[size] = NULL; + if (images != NULL && images != EPHY_SPINNER_IMAGES_INVALID) { ephy_spinner_images_unref (images); } - - data->images[size] = NULL; } } diff --git a/lib/widgets/testspinner.c b/lib/widgets/testspinner.c index 46eca658c..31488d55c 100644 --- a/lib/widgets/testspinner.c +++ b/lib/widgets/testspinner.c @@ -49,7 +49,7 @@ static void add_spinner (GtkTable *table, guint interval, gboolean start) { - GtkWidget *label, *frame, *spinner, *button, *spinbutton; + GtkWidget *label, *frame, *button, *spinner; char *text; text = g_strdup_printf ("%s size:", sizename); @@ -117,7 +117,6 @@ int main(int argc, char **argv) { GtkWidget *window, *vbox, *widget; GtkTable *table; - GtkTooltips *tips; int row = 0; gtk_init (&argc, &argv); |