search for: bottommost

Displaying 4 results from an estimated 4 matches for "bottommost".

2006 Apr 04
3
Misc WM buglets
Switching viewports/desktops/cube faces seems to mess up the stacking order - Quinn Storm says the visible stacking order isn't reflected somewhere else. Bottommost windows don't seem to work right - not sure if this is a bug in compiz or gimmie but Gimmies button bar never drops below maximized windows and it does in Metacity. Will investigate when I get a chance. thanks -mike
2009 Jun 02
1
[PATCH] ocfs2: Adjust rightmost path in ocfs2_add_branch.
...s2_super *osb, goto bail; } - eb = (struct ocfs2_extent_block *)(*last_eb_bh)->b_data; - new_cpos = ocfs2_sum_rightmost_rec(&eb->h_list); - /* Note: new_eb_bhs[new_blocks - 1] is the guy which will be * linked with the rest of the tree. * conversly, new_eb_bhs[0] is the new bottommost leaf. -- 1.6.2.rc2.16.gf474c
2009 Jun 12
2
[PATCH 0/2] ocfs2: Adjust rightmost path in ocfs2_add_branch.v2
Hi Mark/Joel, This is the v2 of bug fix for ocfs2_add_branch. Modification from V1 to V2: 1. Create a patch which return EROFS instead of BUG in ocfs2_insert_at_leaf. 2. Use ocfs2_adjust_rightmost_records to change the root and extent blocks in the rightmost path. Regards, Tao
2007 Jul 13
0
3 commits - doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt libswfdec/Makefile.am libswfdec/swfdec_as_array.c libswfdec/swfdec_as_boolean.c libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_frame.c
...wfdec_as_frame_check_scope (SwfdecAsFra } } +/** + * swfdec_as_frame_get_next: + * @frame: a #SwfdecAsFrame + * + * Gets the next frame in the frame stack. The next frame is the frame that + * will be executed after this @frame. + * + * Returns: the next #SwfdecAsFrame or %NULL if this is the bottommost frame. + **/ +SwfdecAsFrame * +swfdec_as_frame_get_next (SwfdecAsFrame *frame) +{ + g_return_val_if_fail (SWFDEC_IS_AS_FRAME (frame), NULL); + + return frame->next; +} + diff --git a/libswfdec/swfdec_as_frame.h b/libswfdec/swfdec_as_frame.h index 6a8197a..b5d632e 100644 --- a/libswfdec/swfdec_...