diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/widgets/ephy-spinner.c | 9 | ||||
-rw-r--r-- | lib/widgets/ephy-spinner.h | 4 |
2 files changed, 11 insertions, 2 deletions
diff --git a/lib/widgets/ephy-spinner.c b/lib/widgets/ephy-spinner.c index 068a36a8e..6540d0cb2 100644 --- a/lib/widgets/ephy-spinner.c +++ b/lib/widgets/ephy-spinner.c @@ -33,6 +33,15 @@ #include <gdk-pixbuf/gdk-pixbuf.h> #include <gtk/gtk.h> +/** + * SECTION:ephy-spinner + * @short_description: A spinning 'loading' widget + * + * #EphySpinner implements an animated 'loading' indicator. + * + * Note that this is to be deprecated in favour of #GtkSpinner widget. + */ + /* Spinner cache implementation */ #define EPHY_TYPE_SPINNER_CACHE (ephy_spinner_cache_get_type()) diff --git a/lib/widgets/ephy-spinner.h b/lib/widgets/ephy-spinner.h index c137d357f..bf376db97 100644 --- a/lib/widgets/ephy-spinner.h +++ b/lib/widgets/ephy-spinner.h @@ -60,9 +60,9 @@ GType ephy_spinner_get_type (void); GtkWidget *ephy_spinner_new (void); -void ephy_spinner_start (EphySpinner *throbber); +void ephy_spinner_start (EphySpinner *spinner); -void ephy_spinner_stop (EphySpinner *throbber); +void ephy_spinner_stop (EphySpinner *spinner); void ephy_spinner_set_size (EphySpinner *spinner, GtkIconSize size); |