Re: [Vala] g_object_unref issues with autotools structure

2009-01-05 Thread Yu Feng
Would you post a stack backtrace here? I'll be glad to help but I don't have a git client by hand. Yu On Mon, 2009-01-05 at 01:19 -0200, Gabriel Falcão wrote: Hi Folks, there I am again with foolish questions, but I can ensure that I am learning SO MUCH, and hope to can help Vala project

Re: [Vala] Action signals

2009-01-05 Thread Yu Feng
Based on my understanding of valac before the recent refactoring, it should be a few line patch around 'signal binding' related code; get a new CCode attribute such as 'action_signal = true' and change the type of the signal to ACTION if so. Yu On Mon, 2009-01-05 at 20:04 +0100, gege2061 wrote:

Re: [Vala] g_object_unref issues with autotools structure

2009-01-05 Thread Gabriel Falcão
I got a solution. The problem was in how I was dealing with an GObject passed through argument to the constructor of HttpBackend class Thanks a lot to Evan Emerson and Yu Feng for helping me. Evan, your tips pointed me where to look for the error. The solution can be found here:

Re: [Vala] g_object_unref issues with autotools structure

2009-01-05 Thread Gabriel Falcão
I got a solution. The problem was in how I was dealing with an GObject passed through argument to the constructor of HttpBackend class Thanks a lot to Evan Emerson and Yu Feng for helping me. Evan, your tips pointed me where to look for the error. The solution can be found here:

[Vala] screen-changed signal emitted before constructor is invoked?

2009-01-05 Thread Yu Feng
Dear developers, I created an Widget and overrode the constructor of the GObject interface to initialize private members. Then I listened to screen-changed signal of the widget. in the signal handler a private member was accessed; The private member was not properly initialized when the first