Re: [Vala] HashTable get_keys() and get_values() methods. Bug or my fault?

2008-12-05 Thread Sam Liddicott
* Vlad Grecescu wrote, On 04/12/08 23:55: > > > On Wed, Dec 3, 2008 at 2:04 PM, Sam Liddicott <[EMAIL PROTECTED] > > wrote: > > * Daniele Benucci wrote, On 03/12/08 11:42: > > Grabel's Law: > > 2 is not equal to 3 -- not even for large values of 2. > I've s

[Vala] over-riding configure events

2008-12-05 Thread Karl Lattimer
Hi, I was wondering what must be done to over-ride a configure event in a GtkWidget. I can't find an event mask for it, and therefore my configure event never seems to fire. Could someone point me to what I have to do in order to get my configure event to work? BR, K

Re: [Vala] HashTable get_keys() and get_values() methods. Bug or my fault?

2008-12-05 Thread Evan Nemerson
You're declaring v as List, but it should be List. You could also just do var v = ht.get_values() and Vala would automatically do the right thing. On Wed, 2008-12-03 at 12:42 +0100, Daniele Benucci wrote: > using GLib; > > public class HashTest : GLib.Object { > private HashTable ht; > >