Changeset 394
- Timestamp:
- 09/17/07 00:08:28 (1 year ago)
- Files:
-
- gtkimageview/src/gtkanimview.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gtkimageview/src/gtkanimview.c
r325 r394 24 24 * <filename>./tests/ex-anim.c</filename> program for an example of 25 25 * how this widget is used 26 * @short_description: Subclass of #GtkImageView capable of displaying27 * animations.26 * @short_description: Subclass of #GtkImageView capable of playing 27 * GIF animations. 28 28 * 29 29 * <para> … … 128 128 gtk_anim_view_finalize (GObject *object) 129 129 { 130 gtk_anim_view_set_is_playing (GTK_ANIM_VIEW (object), FALSE); 131 130 132 /* Chain up. */ 131 133 G_OBJECT_CLASS (gtk_anim_view_parent_class)->finalize (object); … … 274 276 aview->delay = gdk_pixbuf_animation_iter_get_delay_time (aview->iter); 275 277 aview->timer_id = g_timeout_add (aview->delay, 276 gtk_anim_view_updator, 277 aview); 278 gtk_anim_view_updator, aview); 278 279 } 279 280 280 281 /** 281 282 * gtk_anim_view_set_is_playing: 282 * @aview: A #GtkImageView.283 * @playing: %TRUE to play the animation, %FALSE otherwise .283 * @aview: a #GtkImageView 284 * @playing: %TRUE to play the animation, %FALSE otherwise 284 285 * 285 286 * Sets whether the animation should play or not. If there is no
