2008-02-02 Matthew Allum <mallum@openedhand.com>

* clutter/clutter-timeline.c:
        Document frame number limits in new-frame signal.

        * clutter/x11/clutter-event-x11.c:
        Remove uneeded error trap (#751)
This commit is contained in:
Matthew Allum 2008-02-02 23:39:53 +00:00
parent d83442476f
commit f6602ad265
3 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,11 @@
2008-02-02 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-timeline.c:
Document frame number limits in new-frame signal.
* clutter/x11/clutter-event-x11.c:
Remove uneeded error trap (#751)
2008-02-01 Matthew Allum <mallum@openedhand.com>
* clutter/cogl/cogl.h:

View File

@ -37,6 +37,7 @@
* In that case you might disable the common timeline pool by setting
* the %CLUTTER_TIMELINE=no-pool environment variable prior to launching
* your application.
*
*/
#ifdef HAVE_CONFIG_H
@ -375,7 +376,8 @@ clutter_timeline_class_init (ClutterTimelineClass *klass)
/**
* ClutterTimeline::new-frame:
* @timeline: the timeline which received the signal
* @frame_num: the number of the new frame
* @frame_num: the number of the new frame between 0 and
* ClutterTimeline:num-frames
*
* The ::new-frame signal is emitted each time a new frame in the
* timeline is reached.
@ -979,7 +981,7 @@ clutter_timeline_clone (ClutterTimeline *timeline)
*
* Creates a new #ClutterTimeline with a duration of @msecs using
* the value of the ClutterTimeline:fps property to compute the
* equivalent number of frames.
* equivalent number of frames.
*
* Return value: the newly created #ClutterTimeline
*

View File

@ -148,12 +148,10 @@ xembed_set_info (ClutterBackendX11 *backend_x11,
list[0] = MAX_SUPPORTED_XEMBED_VERSION;
list[1] = XEMBED_MAPPED;
clutter_x11_trap_x_errors ();
XChangeProperty (backend_x11->xdpy, window,
backend_x11->atom_XEMBED_INFO,
backend_x11->atom_XEMBED_INFO, 32,
PropModeReplace, (unsigned char *) list, 2);
clutter_x11_untrap_x_errors ();
}
void
@ -275,7 +273,6 @@ handle_wm_protocols_event (ClutterBackendX11 *backend_x11,
False,
SubstructureRedirectMask | SubstructureNotifyMask,
(XEvent *) &xclient);
return FALSE;
}