Re: g_malloc overhead

2009-01-20 Thread muppet
On Jan 18, 2009, at 11:43 AM, Martín Vales wrote: What are the advantages of use a glib_mem_vtable ???. I think we have the same malloc function in all operating systems? This vtable allows you to swap in a different allocator with next to no effort. Maybe it has special OOM handling, or

RE: Auto-scrolling the scrollbar on a TreeView

2007-10-05 Thread muppet
ll->add_with_viewport($top); $bottomScroll->add_with_viewport($bottom); $top and $bottom are both "natively scrollable" widgets, so add_with_viewport() actually messes them up. Just do $topScroll->add($top); $bottomScroll->add($bottom); -- muppet __